/* Tiny site layer on top of stock Bulma — kept deliberately minimal. */

/* Menu in the top middle (Bulma's default is left-aligned),
   in a larger font than the rest of the page. */
.navbar-start {
    margin-left: auto;
}
.navbar-start .navbar-item {
    font-size: 1.3rem;
    font-weight: 600;
}

.navbar-brand img {
    max-height: 2.5rem;
}

/* Home page */
.home-mascot {
    max-height: 14rem;
}

/* Game/app tiles — kept compact. */
.tile-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tile-card .card-content {
    flex: 1;
    padding: 0.75rem;
}
.tile-card .card-image img {
    object-fit: contain;
    padding: 0.5rem;
}

/* Mobile game/app list rows (tiles.html, shown instead of the tile grid below tablet width) */
.tile-row {
    align-items: center;
    padding: 0.6rem 0.9rem;
}
.tile-row .media-left {
    margin-inline-end: 0.75rem;
}
.tile-row .image img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

/* Chat app */
.chat-messages {
    height: 24rem;
    overflow-y: auto;
    border: 1px solid var(--bulma-border, #dbdbdb);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
}
.chat-msg {
    margin-bottom: 0.25rem;
    overflow-wrap: break-word;
}

/* Lists app */
.list-item-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--bulma-border-weak, #ededed);
}
.list-item-text {
    flex: 1;
    cursor: pointer;
}
.list-item-text.is-done {
    text-decoration: line-through;
    opacity: 0.55;
}
.list-item-row .input {
    flex: 1;
}
.list-item-delete {
    flex: 0 0 auto;
}

/* Planner app */
.outline-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.15rem 0;
}
.outline-bullet {
    opacity: 0.6;
}
.outline-text {
    cursor: pointer;
}
.outline-input {
    max-width: 30rem;
}
.outline-tools {
    visibility: hidden;
    white-space: nowrap;
}
.outline-row:hover .outline-tools {
    visibility: visible;
}
.node-btn {
    padding-left: 0.5em;
    padding-right: 0.5em;
    height: 1.6em;
    background: transparent;
}
