﻿.main-content {
    background-color: #ffffff;
    min-height: 100vh;
    padding-bottom: 80px;
}

.top-header {
    background-color: #343a40;
    color: white;
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

    .top-header h2 {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 500;
    }

.logout-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.btn-logout {
    background-color: transparent;
    border: none;
    color: #000000;
    padding: 0.3rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
}

    .btn-logout:hover {
        color: #666;
    }

.profile-content {
    padding: 1.5rem 1.5rem;
    max-width: 100%;
}

.profile-section,
.showrooms-section {
    margin-bottom: 1.5rem;
}

.section-title {
    margin: 0 0 0.8rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

.profile-info {
    margin-bottom: 1rem;
}

.info-line {
    margin: 0.2rem 0;
    color: #000000;
    font-size: 15px;
    line-height: 1.3;
}

.contact-admin {
    font-size: 0.85rem;
    color: #000000;
    margin-top: 0.8rem;
}

.showrooms-list {
    max-height: none;
    overflow: visible;
}

.showroom-item-logout {
    margin: 0.2rem 0;
    color: #000000;
    font-size: 15px;
    line-height: 1.3;
    padding: 0;
    background: none;
    border: none;
    font-family: inherit;
}

.loading-container,
.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.error-container {
    color: #dc3545;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-header {
        padding: 0.8rem 1rem;
    }

        .top-header h2 {
            font-size: 1.1rem;
        }

    .profile-content {
        padding: 1rem;
    }

    .logout-container {
        margin-bottom: 1rem;
    }
}
