.center-container {
    /*display: flex;*/
    /*justify-content: center;*/
    /*margin: 1rem;*/
}

.inline-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--bs-primary-rehlo);
    margin: 1rem;
}

.inline-icon-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-title {
    color: var(--bs-primary-rehlo);
    font-size: 1.50rem;
    font-weight: 700;
    margin: 0;
}

.dashboard-profile-info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}


.admin-layout-wrapper {
    padding-top: 80px;
}

.admin-layout {
    display: flex;
}

/* Fixed Sidebar */
.sidebar-section {
    width: 300px;
    position: fixed;
    top: 80px;
    left: 0;
    bottom: 0;
    padding: 1rem 0 0 2rem;
    overflow-y: auto;
    z-index: 1030;
}

/* Main content section */
.content-section {
    margin-left: 310px;
    padding: 1rem;
    max-width: 950px;
    width: 100%;
}

@media (max-width: 991.98px) {
    .sidebar-section {
        position: static;
        width: 100%;
        height: auto;
        padding: 1rem;
    }

    .content-section {
        margin-left: 0;
    }

    .admin-layout {
        flex-direction: column;
    }
}

.restriction-message {
    color: var(--bs-danger);
}

/* Set fixed widths for each column */
.footable thead th:nth-child(1),
.footable tbody td:nth-child(1) {
    width: 40%; /* Listing Title */
}

.footable thead th:nth-child(2),
.footable tbody td:nth-child(2) {
    width: 15%; /* Hosting Plan */
}

.footable thead th:nth-child(3),
.footable tbody td:nth-child(3) {
    width: 12%; /* Status */
}

.footable thead th:nth-child(4),
.footable tbody td:nth-child(4) {
    width: 15%; /* Added On */
}

.footable thead th:nth-child(5),
.footable tbody td:nth-child(5) {
    width: 15%; /* Actions */
}


/* Start - Welcome Guid Section */
.point-of-contact-details-card.modern {
    background: #f8fafd;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    margin-bottom: 0.5rem;
}

.point-of-contact-fields-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.field-box {
    flex: 1 1 300px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    padding-right: 0;
}

.full-width {
    flex: 1 1 100%;
}

.field-box label {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.3rem;
}

.field-box input,
.field-box select,
.field-box textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .field-box:not(:last-child) {
        padding-right: 1.25rem;
    }
}

.photo-upload-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.photo-avatar {
    width: 80px; /* Increased size */
    height: 80px; /* Increased size */
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    font-size: 3rem; /* Increased icon size */
    color: #b0b0b0;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
}

    .photo-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        display: block;
    }

    .photo-avatar i {
        font-size: 3rem; /* Increased icon size */
        color: #b0b0b0;
    }

.photo-upload-text-link {
    color: #555;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}

    .photo-upload-text-link:hover {
        color: #1a4a99; /* Darker blue on hover */
        text-decoration: underline;
    }
/* End - Welcome Guid Section */

/* Start - House Rules Section */
.house-rules-summary-card.modern {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    margin-bottom: 0.5rem;
}

.summary-row {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.1rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 120px;
}

    .summary-item i {
        font-size: 1.5rem;
        color: #2563eb;
        border-radius: 50%;
        padding: 0;
        background: none !important;
    }

    .summary-item .label {
        font-size: 0.95rem;
        color: #4b5563;
        font-weight: 400;
    }

    .summary-item .value {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1f2937;
    }

.see-full-link {
    display: inline-block;
    margin-top: 0.1rem;
    color: #2563eb;
    text-decoration: underline;
    font-weight: 500;
    font-size: 1rem;
}

@media (max-width: 700px) {
    .house-rules-summary-card.modern {
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }

    .summary-row {
        gap: 1.2rem;
    }

    .summary-item {
        min-width: 100px;
    }
}
/* End - House Rules Section */


/* Start - Location Section */

/* End - Location Section */


/* Start - Amenities Section */
:root {
    --primary-color: #016EB3;
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --background-color: #FFFFFF;
    --card-background: #FFFFFF;
    --border-color: #E5E7EB;
}

.tabs-container {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    background: #e6f3ff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 8px 0 rgba(1,110,179,0.04);
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 12px;
    background-color: var(--card-background);
    color: var(--text-primary);
    transition: background-color 0.3s, color 0.3s;
    gap: 0.5rem;
}

    .tab i {
        margin-right: 0.5rem;
    }

    .tab.active {
        background-color: var(--primary-color);
        color: var(--bs-white);
    }

.tab-content {
    display: none;
}

    .tab-content.active-tab {
        display: block;
    }

.tab-content-heading {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.amenity-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .amenity-option i {
        font-size: 1.2rem;
    }

    .amenity-option.selected {
        background-color: var(--primary-color);
        color: #fff;
    }

@media (max-width: 576px) {
    .amenity-grid {
        grid-template-columns: 1fr; /* Stack vertically on small screens */
    }
}

/* Style for indicating additional details */
.amenity-option.details-added {
    background-color: #e0f7fa;
    position: relative;
}
    /* Remove the tick icon for details-added */
    .amenity-option.details-added::after {
        content: '';
    }

/* Style for the pen icon */
.amenity-option .fa-pen {
    margin-left: auto; /* Push to far right */
    display: none; /* Hidden by default */
}

.amenity-option.selected .fa-pen {
    display: inline; /* Show when selected */
    color: #fff !important; /* White color when selected */
}

/* End - Amenities Section */


/* Start - Safety Disclosures Section */
.emergency-info {
    background: rgba(var(--bs-primary-rehlo-rgb), 0.075);
    border: none;
    border-radius: 8px;
    padding: 1.5rem;
}

.emergency-title {
    color: var(--bs-primary-rehlo);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.emergency-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .emergency-item label {
        font-weight: 600;
        color: var(--text-primary);
        flex: 1;
        padding-right: 1rem;
    }

@media (max-width: 800px) {
    .emergency-grid {
        /* On small screens, it's usually better to drop to 1 column */
        grid-template-columns: 1fr;
    }
}
/* End - Safety Disclosures Section */
