/* profile-nights.css — "Nights" tab on the profile page.
   Chronological list of attended DJ sets, one tile per night. */

.nights-section {
    padding: 16px 0;
}

.nights-empty {
    padding: 16px 14px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    line-height: 1.6;
}

.nights-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.night-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.night-tile:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.12);
}

.night-thumb {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.night-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.night-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.night-room {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.night-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
}

.night-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.night-link {
    flex: 0 0 auto;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.night-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 520px) {
    .night-tile { padding: 9px 10px; gap: 10px; }
    .night-thumb { width: 44px; height: 44px; }
    .night-link { padding: 5px 10px; font-size: 0.75rem; }
}
