.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 */
