/* /Pages/Admin/Login.razor.rz.scp.css */
/* ===== Login Page Layout ===== */
body[b-5s3l37cxht], html[b-5s3l37cxht] {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0052a5 0%, #0078d7 100%);
    color: #333;
}

/* Center container */
.login-container[b-5s3l37cxht] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

/* Login card */
.login-box[b-5s3l37cxht] {
    background-color: #fff;
    border-radius: 10px;
    padding: 35px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    animation: fadeIn-b-5s3l37cxht 0.6s ease;
}

    /* Login title */
    .login-box h3[b-5s3l37cxht] {
        text-align: center;
        margin-bottom: 25px;
        font-weight: 600;
        color: #0052a5;
    }

/* Labels */
.form-label[b-5s3l37cxht] {
    font-weight: 600;
    color: #444;
}

/* Inputs */
.form-control[b-5s3l37cxht] {
    width: 100%;
    padding: 10px 12px;
    margin-top: 5px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .form-control:focus[b-5s3l37cxht] {
        border-color: #0078d7;
        outline: none;
        box-shadow: 0 0 4px rgba(0, 120, 215, 0.3);
    }

/* Login button */
.btn.btn-primary[b-5s3l37cxht] {
    width: 100%;
    background-color: #0078d7;
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn.btn-primary:hover[b-5s3l37cxht] {
        background-color: #0052a5;
    }

/* Error alert */
.alert-danger[b-5s3l37cxht] {
    background-color: #ffdddd;
    border: 1px solid #e60000;
    color: #a10000;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
}

/* Validation summary */
.validation-summary-errors ul[b-5s3l37cxht] {
    list-style: none;
    padding-left: 0;
    color: #b30000;
    font-size: 14px;
}

/* Fade animation */
@keyframes fadeIn-b-5s3l37cxht {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .login-box[b-5s3l37cxht] {
        padding: 25px;
    }
}
/* /Pages/Dashboard/Avtivities_analysis.razor.rz.scp.css */
/* Table Container */
.custom-table[b-jqph3d9ag0] {
    width: 100%;
    border-collapse: collapse;
    background: #f8f9fa; /* Light background */
}

/* Table Row */
.custom-row[b-jqph3d9ag0] {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 3px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    /* Hover Effect */
    .custom-row:hover[b-jqph3d9ag0] {
        background: #f0f4f8;
    }

    /* Checkbox */
    .custom-row input[type="checkbox"][b-jqph3d9ag0] {
        margin-right: 15px;
    }

/* Column Structure */
.custom-column[b-jqph3d9ag0] {
    flex: 1;
    font-size: 16px;
    color: #4a4a4a;
}

/* Name Column (Clickable Link) */
.custom-name[b-jqph3d9ag0] {
    color: forestgreen;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

    .custom-name:hover[b-jqph3d9ag0] {
        text-decoration: underline;
    }

/* Job Title */
.custom-job[b-jqph3d9ag0] {
    font-size: 14px;
    color: #777;
}

/* Phone Number */
.custom-phone[b-jqph3d9ag0] {
    color: mediumseagreen;
    text-align: right;
    flex: 1.5;
    font-weight: bold;
}

/* Institution */
.custom-institution[b-jqph3d9ag0] {
    text-align: right;
    flex: 1.5;
    color: #555;
}

.previewbtn[b-jqph3d9ag0] {
    border-radius: 25px;
    background-color: mediumseagreen;
    color: white;
    border: 1px solid mediumseagreen;
    font-size: 0.9rem;
}

.modal-overlay[b-jqph3d9ag0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-jqph3d9ag0] {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn-b-jqph3d9ag0 0.3s ease-in-out;
}

.modal-header[b-jqph3d9ag0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.modal-close[b-jqph3d9ag0] {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

    .modal-close:hover[b-jqph3d9ag0] {
        color: #333;
    }

.modal-body[b-jqph3d9ag0] {
    max-height: 70vh;
    overflow-y: auto;
}

@keyframes fadeIn-b-jqph3d9ag0 {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Ensure No Overflow */
html[b-jqph3d9ag0], body[b-jqph3d9ag0] {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden; /* No scrolling */
    font-family: 'Poppins', Arial, sans-serif;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

/* Dashboard Container */
.dashboard-container[b-jqph3d9ag0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 90vh;
    width: 90vw;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.textmidgh[b-jqph3d9ag0] {
    font-weight: 6;
}

.texthead[b-jqph3d9ag0] {
    font-weight: 600;
}
/* Header */
.dashboard-header[b-jqph3d9ag0] {
    text-align: center;
    background-color: whitesmoke;
    width: 98%;
    margin: 10px;
    border-radius: 15px;
    padding: 10px 0;
    font-size: 1.3rem;
    font-weight: 6;
    color: #343a40;
}

/* Main Content Layout */
.dashboard-main[b-jqph3d9ag0] {
    display: flex;
    width: 95vw;
    height: 75vh;
    align-items: center;
    justify-content: space-between;
}

/* Map Section */
.dashboard-map[b-jqph3d9ag0] {
    /* flex: 1;*/
    height: 100%;
    display: flex;
    padding: 10px;
    /*    justify-content: center;
    align-items: center;*/
    background: #e9ecef;
    border-radius: 15px;
    min-width: 35vw;
    max-width: 20vw;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

    .dashboard-map:hover[b-jqph3d9ag0] {
        transform: scale(1.02);
    }

/* Image inside Map */
.map-image[b-jqph3d9ag0] {
    width: 85%;
    height: auto;
}

/* Stats Section */
/*.dashboard-stats {
    display: grid;
    padding: 10px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    flex: 2;
    width: 30%;
    max-width: 60vw;
    height: 100%;
}
*/
/* Improved card design */
/* Stats Section */
.dashboard-stats[b-jqph3d9ag0] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    max-width: 100%;
    width: 80%;
    height: 60vh;
    padding: 30px;
}

.stat-card[b-jqph3d9ag0] {
    width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;

}

    .stat-card:hover[b-jqph3d9ag0] {
        transform: scale(1.05);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    }

/* Bottom Navigation */
.dashboard-buttons[b-jqph3d9ag0] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 1000px;
    padding: 15px;
}

/* Buttons with modern styling */
.btn[b-jqph3d9ag0] {
    padding: 12px 18px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    font-size: 1.1em;
    min-width: 160px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .btn:hover[b-jqph3d9ag0] {
        transform: scale(1.1);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    }

.indicators[b-jqph3d9ag0] {
    background: #6C63FF;
    color: white;
}

.joint-indicators[b-jqph3d9ag0] {
    background: #51cf66;
    color: white;
}

.outputs[b-jqph3d9ag0] {
    background: #ff922b;
    color: white;
}

.beneficiaries[b-jqph3d9ag0] {
    background: #c77dff;
    color: white;
}

.infrastructures[b-jqph3d9ag0] {
    background: #ffd43b;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-main[b-jqph3d9ag0] {
        flex-direction: column;
        height: auto;
        justify-content: center;
    }

    .dashboard-map[b-jqph3d9ag0] {
        width: 100%;
        min-height: 250px;
        max-width: 100%;
    }

    .dashboard-stats[b-jqph3d9ag0] {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        grid-template-rows: repeat(3, auto); /* 3 rows */
    }
}

@media (max-width: 768px) {
    .dashboard-stats[b-jqph3d9ag0] {
        grid-template-columns: 1fr; /* 1 column */
        grid-template-rows: repeat(6, auto); /* 6 rows */
    }

    .dashboard-buttons[b-jqph3d9ag0] {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .dashboard-buttons[b-jqph3d9ag0] {
        flex-direction: column;
    }
}

image_log[b-jqph3d9ag0] {
    background-color: red;
    width: 100%;
    height: 80%;
}

Content_log[b-jqph3d9ag0] {
}



.icon[b-jqph3d9ag0] {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 25px;
    padding: 15px;
}

.title[b-jqph3d9ag0] {
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
}

.description[b-jqph3d9ag0] {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.button[b-jqph3d9ag0] {
    background: #11358a;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .button:hover[b-jqph3d9ag0] {
        background: #5175c9;
    }

/* Custom Table: Full Width, 10% Height, Horizontal Layout */
.custom-table[b-jqph3d9ag0] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* single row, no wrap */
    justify-content: space-around;
    align-items: center;
    width: 80vw; /* full screen width */
    height: 10vh; /* 10% of viewport height */
    padding: 5px 10px;
    overflow-x: auto;
    gap: 10px;
    background: transparent;
}

/* Compact Stat Card */
.stat-card[b-jqph3d9ag0] {
    flex: 0 0 auto;
    width: 200px;
    height: 90%; /* make card height respect container */
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

    .stat-card:hover[b-jqph3d9ag0] {
        transform: scale(1.03);
    }

    /* Icon Adjustments */
    .stat-card .icon[b-jqph3d9ag0] {
        width: 30px;
        height: 30px;
        margin: 0 auto 5px auto;
        padding: 5px;
    }
.dashboard-body[b-jqph3d9ag0] {
    overflow-y: auto; /* or hidden */
    max-height: unset;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 80vh;
    padding: 10px;
    gap: 10px;
}

/* Map Section */
.map-section[b-jqph3d9ag0] {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder[b-jqph3d9ag0] {
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    padding: 20px;
    border: 2px dashed #aaa;
}

/* Stats Section */
.stats-section[b-jqph3d9ag0] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.beneficiary-totals[b-jqph3d9ag0] {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.beneficiary-card[b-jqph3d9ag0] {
    flex: 1;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Bar Chart */
.bar-chart[b-jqph3d9ag0] {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bar-title[b-jqph3d9ag0] {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.bar-group[b-jqph3d9ag0] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 120px;
    padding: 10px;
    gap: 10px;
}

.bar[b-jqph3d9ag0] {
    text-align: center;
    flex: 1;
    font-size: 0.8rem;
}

.bar-fill[b-jqph3d9ag0] {
    background-color: mediumseagreen;
    width: 100%;
    margin-top: 5px;
    transition: height 0.3s ease;
}
.section-subtitle[b-jqph3d9ag0] {
    margin: 10px 0 5px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}
.modal-overlay[b-jqph3d9ag0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-container[b-jqph3d9ag0] {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    position: relative;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    overflow-y: auto;
    max-height: 90vh;
}

.modal-close[b-jqph3d9ag0] {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.table-row[b-jqph3d9ag0] {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .table-row:hover[b-jqph3d9ag0] {
        background-color: #f1f1f1;
    }

.pagination-controls[b-jqph3d9ag0] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}
/* Page layout margin */
body[b-jqph3d9ag0] {
    margin: 0;
    padding: 0;
    background-color: #f5f6fa;
    font-family: 'Segoe UI', sans-serif;
}

.page-container[b-jqph3d9ag0] {
    max-width: 1000px;
    margin: 30px auto; /* Top + bottom, center horizontally */
    padding: 0 20px; /* Left + right padding */
}

/* Section blocks */
.section-activity-details[b-jqph3d9ag0],
.section-geolocation[b-jqph3d9ag0],
.section-participants[b-jqph3d9ag0],
.section-agegroup[b-jqph3d9ag0],
.section-specialgroup[b-jqph3d9ag0],
.section-output[b-jqph3d9ag0],
.section-indicators[b-jqph3d9ag0],
.section-joint-indicators[b-jqph3d9ag0] {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Headings and labels */
.section-title[b-jqph3d9ag0] {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
    padding-left: 12px;
}

.section-subtitle[b-jqph3d9ag0] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #333;
}

/* Form inputs */
input[type="text"][b-jqph3d9ag0],
input[type="number"][b-jqph3d9ag0],
input[type="date"][b-jqph3d9ag0],
select[b-jqph3d9ag0],
.input-country[b-jqph3d9ag0],
.input-region[b-jqph3d9ag0],
.input-subregion[b-jqph3d9ag0],
.input-district[b-jqph3d9ag0],
.input-site[b-jqph3d9ag0],
.input-organization[b-jqph3d9ag0],
.input-activity[b-jqph3d9ag0],
.input-other-activity[b-jqph3d9ag0],
.input-description[b-jqph3d9ag0],
.input-start-date[b-jqph3d9ag0],
.input-end-date[b-jqph3d9ag0],
.input-latitude[b-jqph3d9ag0],
.input-longitude[b-jqph3d9ag0],
.input-men[b-jqph3d9ag0],
.input-women[b-jqph3d9ag0] {
    display: block;
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fff;
    transition: border 0.3s ease-in-out;
}

    input:focus[b-jqph3d9ag0],
    select:focus[b-jqph3d9ag0] {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 3px rgba(0, 123, 255, 0.25);
    }

/* Tables */
table[b-jqph3d9ag0] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th[b-jqph3d9ag0], td[b-jqph3d9ag0] {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

th[b-jqph3d9ag0] {
    background-color: #f8f9fa;
    font-weight: bold;
    text-align: left;
}

/* Checkbox and number inputs in table */
.checkbox-output[b-jqph3d9ag0],
.checkbox-indicator[b-jqph3d9ag0],
.checkbox-joint-indicator[b-jqph3d9ag0],
.input-age-men[b-jqph3d9ag0],
.input-age-women[b-jqph3d9ag0],
.input-special-men[b-jqph3d9ag0],
.input-special-women[b-jqph3d9ag0] {
    width: 100%;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Submit Button */
.btn-submit[b-jqph3d9ag0] {
    background-color: #007bff;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    margin: 0 auto 50px auto;
    transition: background-color 0.2s ease-in-out;
}

    .btn-submit:hover[b-jqph3d9ag0] {
        background-color: #0056b3;
    }

.activity-search-bar[b-jqph3d9ag0] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    padding: 10px;
    gap: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-activity-input[b-jqph3d9ag0] {
    flex: 1;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease-in-out;
}

    .search-activity-input:focus[b-jqph3d9ag0] {
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

.btn-search[b-jqph3d9ag0] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .btn-search:hover[b-jqph3d9ag0] {
        background-color: #0056b3;
    }

.section-title[b-jqph3d9ag0] {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    color: #2c3e50;
}

.search-activity-input[b-jqph3d9ag0] {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.table[b-jqph3d9ag0] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

    .table thead[b-jqph3d9ag0] {
        background-color: #f5f7fa;
    }

    .table th[b-jqph3d9ag0],
    .table td[b-jqph3d9ag0] {
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .table th[b-jqph3d9ag0] {
        font-weight: 600;
        color: #34495e;
        background-color: #f0f0f0;
    }

.table-row[b-jqph3d9ag0] {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .table-row:hover[b-jqph3d9ag0] {
        background-color: #f9f9f9;
    }

.pagination-controls[b-jqph3d9ag0] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    gap: 20px;
}

    .pagination-controls button[b-jqph3d9ag0] {
        background-color: #2b9948;
        color: white;
        border: none;
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        .pagination-controls button:hover:not(:disabled)[b-jqph3d9ag0] {
            background-color: #247c3a;
        }

        .pagination-controls button:disabled[b-jqph3d9ag0] {
            background-color: #ccc;
            cursor: default;
        }

    .pagination-controls span[b-jqph3d9ag0] {
        font-weight: 500;
        font-size: 16px;
    }

.loading-overlay[b-jqph3d9ag0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loading-text[b-jqph3d9ag0] {
    margin-top: 12px;
    font-size: 18px;
    color: white;
    font-weight: 500;
}

.hourglass[b-jqph3d9ag0] {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 50%;
    animation: hourglassSpin-b-jqph3d9ag0 1s linear infinite;
}

@keyframes hourglassSpin-b-jqph3d9ag0 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.bar-chart[b-jqph3d9ag0] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-top: 20px;
}

.bar-title[b-jqph3d9ag0] {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.bar-group[b-jqph3d9ag0] {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
    height: 220px; /* Important for % height scaling */
}

.bar[b-jqph3d9ag0] {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bar-fill[b-jqph3d9ag0] {
    width: 100%;
    transition: height 0.4s;
}

    .bar-fill.male[b-jqph3d9ag0] {
        background-color: #3399ff;
        margin-bottom: 2px;
    }

    .bar-fill.female[b-jqph3d9ag0] {
        background-color: #ff66cc;
    }
/* /Pages/Dashboard/Indicatoranalysis.razor.rz.scp.css */
/* Main Styles for Indicator Analysis */

/* Table Styles */
.indicator-styled-table[b-9rv31gipxu] {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

    .indicator-styled-table th[b-9rv31gipxu],
    .indicator-styled-table td[b-9rv31gipxu] {
        border: 1px solid #ddd;
        padding: 8px;
    }

    .indicator-styled-table th[b-9rv31gipxu] {
        background-color: #f4f4f4;
        font-weight: bold;
        text-align: center;
    }

    .indicator-styled-table tbody tr:nth-child(even)[b-9rv31gipxu] {
        background-color: #f9f9f9;
    }

    .indicator-styled-table tbody tr:hover[b-9rv31gipxu] {
        background-color: #f1f1f1;
        cursor: pointer;
    }

/* Highlight selected row */
.indicator-selected-row[b-9rv31gipxu] {
    background-color: #d3eaf5;
    color: #333;
}

/* Drawer Styles */
.indicator-drawer-overlay[b-9rv31gipxu] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
}

.indicator-drawer[b-9rv31gipxu] {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100%;
    background-color: lightgray;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    /* Make Content Scrollable */
    overflow-y: auto;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    padding: 20px; /* Ensure content isn't flush against edges */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .indicator-drawer[b-9rv31gipxu] {
        width: 90%; /* Adjust width for smaller screens */
        right: -90%;
    }
}

.selectedindic_click[b-9rv31gipxu] {
    flex-grow: 1; /* Take up remaining space */
    display: flex;
    justify-self: flex-end;
    justify-content: flex-start; /* Aligns the text to the right */
    align-items: center; /* Align vertically */
    padding-right: 20px;
}

.close_click[b-9rv31gipxu] {
    display: flex;
    justify-content: flex-end; /* Push button to the right */
}
/*.close_click 
{
    width: 3%;
    height: 40px;
    background-color: white;
    padding: 4px;
}*/
.indicator-drawer-open[b-9rv31gipxu] {
    right: 0;
}

.indicator-drawer-header[b-9rv31gipxu] {
    display: flex;
    justify-content: space-between; /* Push elements to the edges */
    align-items: center; /* Align vertically */
    padding: 10px;
    background-color: #ddd;
    width: 100%;
}

.indicator-close-arrow[b-9rv31gipxu] {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.indicator-drawer-content[b-9rv31gipxu] {
    padding: 15px;
}

/* Hamburger Menu */
.indicator-hamburger-menu[b-9rv31gipxu] {
    position: fixed;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 1010;
}


/*start her dash*/


.tablet_02[b-9rv31gipxu] {
    padding: 10px;
    width: 48%;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    color: #ffa726;
    float: left;
    height: 400px;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

    .tablet_02:hover[b-9rv31gipxu] {
        transform: scale(1.01);
        box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8);
    }

.tablet_03[b-9rv31gipxu] {
    padding: 10px;
    width: 50%;
    height: 400px;
    float: right;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    text-align: center;
    color: #ffa726;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

    .tablet_03:hover[b-9rv31gipxu] {
        transform: scale(1.01);
        box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8);
    }

.tablet_04[b-9rv31gipxu] {
    padding: 10px;
    margin-top: 420px;
    width: 100%;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    text-align: center;
    color: #ffa726;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.scrollablediv[b-9rv31gipxu] {
    width: 100%; /* Adjust width as needed */
    height: 300px; /* Set a fixed height */
    overflow-y: auto; /* Enables vertical scrolling */
    overflow-x: hidden; /* Hides horizontal scrolling */
    border: 1px solid #ccc; /* Optional: Adds a border for clarity */
    padding: 10px; /* Optional: Adds some padding */
}

.chart_one[b-9rv31gipxu] {
    width: 48%;
    float: left;
    height: 90%;
}

.chart_two[b-9rv31gipxu] {
    width: 48%;
    float: right;
    height: 90%;
}

.tablet_04:hover[b-9rv31gipxu] {
    transform: scale(1.01);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8);
}

.tablet_05[b-9rv31gipxu] {
    padding: 10px;
    margin-top: 20px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    height: 400px;
    border-radius: 12px;
    text-align: center;
    /*color: #ffa726;*/
    font-size: 1.2rem;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;*/
    position: relative;
    overflow-y: auto; /* Enables vertical scrolling */
    overflow-x: hidden; /* Hides horizontal scrolling */
    padding-right: 15px; /* Prevents content from getting hidden under the scrollbar */
}

    /* Optional: Style scrollbar for WebKit browsers */
    .tablet_05[b-9rv31gipxu]::-webkit-scrollbar {
        width: 8px;
    }

    .tablet_05[b-9rv31gipxu]::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .tablet_05[b-9rv31gipxu]::-webkit-scrollbar-thumb {
        background: #ffa726;
        border-radius: 10px;
    }

        .tablet_05[b-9rv31gipxu]::-webkit-scrollbar-thumb:hover {
            background: #ff9800;
        }

/*.tablet_05 {
    padding: 10px;
    margin-top: 20px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    height: 400px;
    border-radius: 12px;
    text-align: center;
    color: #ffa726;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}
    .tablet_05:hover {
        transform: scale(1.01);
        box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8);
    }*/
.dashboard-container[b-9rv31gipxu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 8px;
    justify-content: center;
    align-items: center;
}

.tile2[b-9rv31gipxu] {
    padding: 3px;
    border-radius: 12px;
    text-align: center;
    color: #36a34a;
    font-weight: bold;
    font-size: 1.0rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.tile[b-9rv31gipxu] {
    padding: 3px;
    border-radius: 12px;
    text-align: center;
    color: #ffa726;
    font-weight: bold;
    font-size: 1.0rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

@keyframes glow-b-9rv31gipxu {
    0% {
        box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8);
    }

    100% {
        box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    }
}

.tile-number[b-9rv31gipxu] {
    font-size: 2.0rem;
    font-weight: bold;
}

.tile-title[b-9rv31gipxu] {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.tile:hover[b-9rv31gipxu] {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8);
}

/* Glowing Effect */
@keyframes glow-b-9rv31gipxu {
    0% {
        box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8);
    }

    100% {
        box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    }
}

.tile-1[b-9rv31gipxu] {
    background-color: rgba(255, 255, 255, 0.5);
    /*background: linear-gradient(135deg, #ff7eb3, #ff758c);*/
    /*animation: glow 2s infinite alternate;*/
}

.tile-2[b-9rv31gipxu] {
    background-color: rgba(255, 255, 255, 0.5);
    /* background: linear-gradient(135deg, #42a5f5, #1e88e5);*/
    /* animation: glow 2s infinite alternate;*/
}

.tile-3[b-9rv31gipxu] {
    background-color: rgba(255, 255, 255, 0.5);
    /* background: linear-gradient(135deg, #66bb6a, #43a047);*/
    /*animation: glow 2s infinite alternate;*/
}

.tile-4[b-9rv31gipxu] {
    background-color: rgba(255, 255, 255, 0.5);
    /*   background: linear-gradient(135deg, #ffa726, #fb8c00);*/
    /*animation: glow 2s infinite alternate;*/
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .dashboard-container[b-9rv31gipxu] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Dashboard/InternalDash.razor.rz.scp.css */
/* Table Container */
.custom-table[b-pip52r3plw] {
    width: 100%;
    border-collapse: collapse;
    background: #f8f9fa; /* Light background */
}

/* Table Row */
.custom-row[b-pip52r3plw] {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 3px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    /* Hover Effect */
    .custom-row:hover[b-pip52r3plw] {
        background: #f0f4f8;
    }

    /* Checkbox */
    .custom-row input[type="checkbox"][b-pip52r3plw] {
        margin-right: 15px;
    }

/* Column Structure */
.custom-column[b-pip52r3plw] {
    flex: 1;
    font-size: 16px;
    color: #4a4a4a;
}

/* Name Column (Clickable Link) */
.custom-name[b-pip52r3plw] {
    color: forestgreen;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

    .custom-name:hover[b-pip52r3plw] {
        text-decoration: underline;
    }

/* Job Title */
.custom-job[b-pip52r3plw] {
    font-size: 14px;
    color: #777;
}

/* Phone Number */
.custom-phone[b-pip52r3plw] {
    color: mediumseagreen;
    text-align: right;
    flex: 1.5;
    font-weight: bold;
}

/* Institution */
.custom-institution[b-pip52r3plw] {
    text-align: right;
    flex: 1.5;
    color: #555;
}

.previewbtn[b-pip52r3plw] {
    border-radius: 25px;
    background-color: mediumseagreen;
    color: white;
    border: 1px solid mediumseagreen;
    font-size: 0.9rem;
}

.modal-overlay[b-pip52r3plw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-pip52r3plw] {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn-b-pip52r3plw 0.3s ease-in-out;
}

.modal-header[b-pip52r3plw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.modal-close[b-pip52r3plw] {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

    .modal-close:hover[b-pip52r3plw] {
        color: #333;
    }

.modal-body[b-pip52r3plw] {
    max-height: 70vh;
    overflow-y: auto;
}

@keyframes fadeIn-b-pip52r3plw {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Ensure No Overflow */
html[b-pip52r3plw], body[b-pip52r3plw] {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden; /* No scrolling */
    font-family: 'Poppins', Arial, sans-serif;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

/* Dashboard Container */
.dashboard-container[b-pip52r3plw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 90vh;
    width: 90vw;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.textmidgh[b-pip52r3plw] {
    font-weight: 6;
}

.texthead[b-pip52r3plw] {
    font-weight: 600;
}
/* Header */
.dashboard-header[b-pip52r3plw] {
    text-align: center;
    background-color: whitesmoke;
    width: 98%;
    margin: 10px;
    border-radius: 15px;
    padding: 10px 0;
    font-size: 1.3rem;
    font-weight: 6;
    color: #343a40;
}

/* Main Content Layout */
.dashboard-main[b-pip52r3plw] {
    display: flex;
    width: 95vw;
    height: 75vh;
    align-items: center;
    justify-content: space-between;
}

/* Map Section */
.dashboard-map[b-pip52r3plw] {
    /* flex: 1;*/
    height: 100%;
    display: flex;
    padding: 10px;
    /*    justify-content: center;
    align-items: center;*/
    background: #e9ecef;
    border-radius: 15px;
    min-width: 35vw;
    max-width: 20vw;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

    .dashboard-map:hover[b-pip52r3plw] {
        transform: scale(1.02);
    }

/* Image inside Map */
.map-image[b-pip52r3plw] {
    width: 85%;
    height: auto;
}

/* Stats Section */
/*.dashboard-stats {
    display: grid;
    padding: 10px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    flex: 2;
    width: 30%;
    max-width: 60vw;
    height: 100%;
}
*/
/* Improved card design */
/* Stats Section */
.dashboard-stats[b-pip52r3plw] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    max-width: 100%;
    width: 80%;
    height: 60vh;
    padding: 30px;
}

.stat-card[b-pip52r3plw] {
    width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;

}

    .stat-card:hover[b-pip52r3plw] {
        transform: scale(1.05);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    }

/* Bottom Navigation */
.dashboard-buttons[b-pip52r3plw] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 1000px;
    padding: 15px;
}

/* Buttons with modern styling */
.btn[b-pip52r3plw] {
    padding: 12px 18px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    font-size: 1.1em;
    min-width: 160px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .btn:hover[b-pip52r3plw] {
        transform: scale(1.1);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    }

.indicators[b-pip52r3plw] {
    background: #6C63FF;
    color: white;
}

.joint-indicators[b-pip52r3plw] {
    background: #51cf66;
    color: white;
}

.outputs[b-pip52r3plw] {
    background: #ff922b;
    color: white;
}

.beneficiaries[b-pip52r3plw] {
    background: #c77dff;
    color: white;
}

.infrastructures[b-pip52r3plw] {
    background: #ffd43b;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-main[b-pip52r3plw] {
        flex-direction: column;
        height: auto;
        justify-content: center;
    }

    .dashboard-map[b-pip52r3plw] {
        width: 100%;
        min-height: 250px;
        max-width: 100%;
    }

    .dashboard-stats[b-pip52r3plw] {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        grid-template-rows: repeat(3, auto); /* 3 rows */
    }
}

@media (max-width: 768px) {
    .dashboard-stats[b-pip52r3plw] {
        grid-template-columns: 1fr; /* 1 column */
        grid-template-rows: repeat(6, auto); /* 6 rows */
    }

    .dashboard-buttons[b-pip52r3plw] {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .dashboard-buttons[b-pip52r3plw] {
        flex-direction: column;
    }
}

image_log[b-pip52r3plw] {
    background-color: red;
    width: 100%;
    height: 80%;
}

Content_log[b-pip52r3plw] {
}



.icon[b-pip52r3plw] {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 25px;
    padding: 15px;
}

.title[b-pip52r3plw] {
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
}

.description[b-pip52r3plw] {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.button[b-pip52r3plw] {
    background: #11358a;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .button:hover[b-pip52r3plw] {
        background: #5175c9;
    }

/* Custom Table: Full Width, 10% Height, Horizontal Layout */
.custom-table[b-pip52r3plw] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* single row, no wrap */
    justify-content: space-around;
    align-items: center;
    width: 80vw; /* full screen width */
    height: 10vh; /* 10% of viewport height */
    padding: 5px 10px;
    overflow-x: auto;
    gap: 10px;
    background: transparent;
}

/* Compact Stat Card */
.stat-card[b-pip52r3plw] {
    flex: 0 0 auto;
    width: 200px;
    height: 90%; /* make card height respect container */
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

    .stat-card:hover[b-pip52r3plw] {
        transform: scale(1.03);
    }

    /* Icon Adjustments */
    .stat-card .icon[b-pip52r3plw] {
        width: 30px;
        height: 30px;
        margin: 0 auto 5px auto;
        padding: 5px;
    }
.dashboard-body[b-pip52r3plw] {
    overflow-y: auto; /* or hidden */
    max-height: unset;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 80vh;
    padding: 10px;
    gap: 10px;
}

/* Map Section */
.map-section[b-pip52r3plw] {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder[b-pip52r3plw] {
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    padding: 20px;
    border: 2px dashed #aaa;
}

/* Stats Section */
.stats-section[b-pip52r3plw] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.beneficiary-totals[b-pip52r3plw] {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.beneficiary-card[b-pip52r3plw] {
    flex: 1;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Bar Chart */
.bar-chart[b-pip52r3plw] {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bar-title[b-pip52r3plw] {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.bar-group[b-pip52r3plw] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 120px;
    padding: 10px;
    gap: 10px;
}

.bar[b-pip52r3plw] {
    text-align: center;
    flex: 1;
    font-size: 0.8rem;
}

.bar-fill[b-pip52r3plw] {
    background-color: mediumseagreen;
    width: 100%;
    margin-top: 5px;
    transition: height 0.3s ease;
}
.section-subtitle[b-pip52r3plw] {
    margin: 10px 0 5px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}
.modal-overlay[b-pip52r3plw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-container[b-pip52r3plw] {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    position: relative;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    overflow-y: auto;
    max-height: 90vh;
}

.modal-close[b-pip52r3plw] {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.table-row[b-pip52r3plw] {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .table-row:hover[b-pip52r3plw] {
        background-color: #f1f1f1;
    }

.pagination-controls[b-pip52r3plw] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}
/* Page layout margin */
body[b-pip52r3plw] {
    margin: 0;
    padding: 0;
    background-color: #f5f6fa;
    font-family: 'Segoe UI', sans-serif;
}

.page-container[b-pip52r3plw] {
    max-width: 1000px;
    margin: 30px auto; /* Top + bottom, center horizontally */
    padding: 0 20px; /* Left + right padding */
}

/* Section blocks */
.section-activity-details[b-pip52r3plw],
.section-geolocation[b-pip52r3plw],
.section-participants[b-pip52r3plw],
.section-agegroup[b-pip52r3plw],
.section-specialgroup[b-pip52r3plw],
.section-output[b-pip52r3plw],
.section-indicators[b-pip52r3plw],
.section-joint-indicators[b-pip52r3plw] {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Headings and labels */
.section-title[b-pip52r3plw] {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
    padding-left: 12px;
}

.section-subtitle[b-pip52r3plw] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #333;
}

/* Form inputs */
input[type="text"][b-pip52r3plw],
input[type="number"][b-pip52r3plw],
input[type="date"][b-pip52r3plw],
select[b-pip52r3plw],
.input-country[b-pip52r3plw],
.input-region[b-pip52r3plw],
.input-subregion[b-pip52r3plw],
.input-district[b-pip52r3plw],
.input-site[b-pip52r3plw],
.input-organization[b-pip52r3plw],
.input-activity[b-pip52r3plw],
.input-other-activity[b-pip52r3plw],
.input-description[b-pip52r3plw],
.input-start-date[b-pip52r3plw],
.input-end-date[b-pip52r3plw],
.input-latitude[b-pip52r3plw],
.input-longitude[b-pip52r3plw],
.input-men[b-pip52r3plw],
.input-women[b-pip52r3plw] {
    display: block;
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fff;
    transition: border 0.3s ease-in-out;
}

    input:focus[b-pip52r3plw],
    select:focus[b-pip52r3plw] {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 3px rgba(0, 123, 255, 0.25);
    }

/* Tables */
table[b-pip52r3plw] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th[b-pip52r3plw], td[b-pip52r3plw] {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

th[b-pip52r3plw] {
    background-color: #f8f9fa;
    font-weight: bold;
    text-align: left;
}

/* Checkbox and number inputs in table */
.checkbox-output[b-pip52r3plw],
.checkbox-indicator[b-pip52r3plw],
.checkbox-joint-indicator[b-pip52r3plw],
.input-age-men[b-pip52r3plw],
.input-age-women[b-pip52r3plw],
.input-special-men[b-pip52r3plw],
.input-special-women[b-pip52r3plw] {
    width: 100%;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Submit Button */
.btn-submit[b-pip52r3plw] {
    background-color: #007bff;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    margin: 0 auto 50px auto;
    transition: background-color 0.2s ease-in-out;
}

    .btn-submit:hover[b-pip52r3plw] {
        background-color: #0056b3;
    }

.activity-search-bar[b-pip52r3plw] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    padding: 10px;
    gap: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-activity-input[b-pip52r3plw] {
    flex: 1;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease-in-out;
}

    .search-activity-input:focus[b-pip52r3plw] {
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

.btn-search[b-pip52r3plw] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .btn-search:hover[b-pip52r3plw] {
        background-color: #0056b3;
    }

.section-title[b-pip52r3plw] {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    color: #2c3e50;
}

.search-activity-input[b-pip52r3plw] {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.table[b-pip52r3plw] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

    .table thead[b-pip52r3plw] {
        background-color: #f5f7fa;
    }

    .table th[b-pip52r3plw],
    .table td[b-pip52r3plw] {
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .table th[b-pip52r3plw] {
        font-weight: 600;
        color: #34495e;
        background-color: #f0f0f0;
    }

.table-row[b-pip52r3plw] {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .table-row:hover[b-pip52r3plw] {
        background-color: #f9f9f9;
    }

.pagination-controls[b-pip52r3plw] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    gap: 20px;
}

    .pagination-controls button[b-pip52r3plw] {
        background-color: #2b9948;
        color: white;
        border: none;
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        .pagination-controls button:hover:not(:disabled)[b-pip52r3plw] {
            background-color: #247c3a;
        }

        .pagination-controls button:disabled[b-pip52r3plw] {
            background-color: #ccc;
            cursor: default;
        }

    .pagination-controls span[b-pip52r3plw] {
        font-weight: 500;
        font-size: 16px;
    }

.loading-overlay[b-pip52r3plw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loading-text[b-pip52r3plw] {
    margin-top: 12px;
    font-size: 18px;
    color: white;
    font-weight: 500;
}

.hourglass[b-pip52r3plw] {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 50%;
    animation: hourglassSpin-b-pip52r3plw 1s linear infinite;
}

@keyframes hourglassSpin-b-pip52r3plw {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.bar-chart[b-pip52r3plw] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-top: 20px;
}

.bar-title[b-pip52r3plw] {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.bar-group[b-pip52r3plw] {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
    height: 220px; /* Important for % height scaling */
}

.bar[b-pip52r3plw] {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bar-fill[b-pip52r3plw] {
    width: 100%;
    transition: height 0.4s;
}

    .bar-fill.male[b-pip52r3plw] {
        background-color: #3399ff;
        margin-bottom: 2px;
    }

    .bar-fill.female[b-pip52r3plw] {
        background-color: #ff66cc;
    }
/* /Pages/Dashboard/JointIndicators.razor.rz.scp.css */
/* === CARD GRID LAYOUT === */
.custom-table[b-ywx6vpcs3h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* responsive grid */
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

/* === INDICATOR CARDS === */
.card-item[b-ywx6vpcs3h] {
    background: #fff;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    /* shadow + transition */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

    .card-item:hover[b-ywx6vpcs3h] {
        transform: translateY(-4px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        background: #f9f9ff;
    }

    /* Selected and Grayed states (from your C# logic) */
    .card-item.selected[b-ywx6vpcs3h] {
        border: 2px solid #007bff;
        background: #eef6ff;
    }

    .card-item.grayed-out[b-ywx6vpcs3h] {
        opacity: 0.6;
        pointer-events: none;
    }
/* === MODAL OVERLAY === */
.modal-overlay[b-ywx6vpcs3h] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn-b-ywx6vpcs3h 0.3s ease-in-out;
}

/* === MODAL CONTAINER === */
.modal-container[b-ywx6vpcs3h] {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp-b-ywx6vpcs3h 0.3s ease-in-out;
}

/* === CLOSE BUTTON === */
.modal-close[b-ywx6vpcs3h] {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #555;
    transition: color 0.2s ease;
}

    .modal-close:hover[b-ywx6vpcs3h] {
        color: #000;
    }

/* === MODAL HEADINGS === */
.modal-container h3[b-ywx6vpcs3h],
.modal-container h4[b-ywx6vpcs3h] {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c3e50;
}

/* === TABLE INSIDE MODAL === */
.modal-container table[b-ywx6vpcs3h] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.modal-container th[b-ywx6vpcs3h],
.modal-container td[b-ywx6vpcs3h] {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 0.95rem;
}

.modal-container th[b-ywx6vpcs3h] {
    background: #f7f9fc;
    font-weight: 600;
    color: #34495e;
}

.modal-container tr:hover td[b-ywx6vpcs3h] {
    background-color: #f9f9f9;
}

/* === MAP INSIDE MODAL === */
#indicatorMap[b-ywx6vpcs3h] {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* === ANIMATIONS === */
@keyframes fadeIn-b-ywx6vpcs3h {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-ywx6vpcs3h {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Pages/Index.razor.rz.scp.css */
html[b-ak4vdwh8hm] {
    scroll-behavior: smooth;
}

/* Fullscreen map background */
#background-map[b-ak4vdwh8hm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* keep behind content */
}

/* Active nav item */
.navbar ul li a.active[b-ak4vdwh8hm] {
    color: gold;
    border-bottom: 2px solid gold;
    padding-bottom: 2px;
}

/* Main container above the map */
.landing-container[b-ak4vdwh8hm] {
    position: relative;
    z-index: 1;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}
.navbar .logo img[b-ak4vdwh8hm] {
    height: 40px; /* adjust as needed */
    width: auto; /* keep proportions */
    vertical-align: middle;
}
/* Navbar */
.navbar[b-ak4vdwh8hm] {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    z-index: 1000;
}

    .navbar .logo[b-ak4vdwh8hm] {
        font-weight: bold;
        font-size: 20px;
    }

    .navbar ul[b-ak4vdwh8hm] {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .navbar ul li[b-ak4vdwh8hm] {
            margin: 0 15px;
        }

            .navbar ul li a[b-ak4vdwh8hm] {
                text-decoration: none;
                color: white;
                transition: color 0.3s;
            }

                .navbar ul li a:hover[b-ak4vdwh8hm] {
                    color: gold;
                }

.login-btn[b-ak4vdwh8hm] {
    background: gold;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

    .login-btn:hover[b-ak4vdwh8hm] {
        background: orange;
    }

/* Sections */
.section[b-ak4vdwh8hm] {
    padding: 100px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    text-align: center;
}

/* Translucent card effect over the map */
/* Translucent card effect over the map */
/* Translucent card effect over the map */
.translucent[b-ak4vdwh8hm] {
    background: rgba(0, 0, 0, 0.1); /* 10% opacity background only */
    border-radius: 12px;
    margin: 40px auto;
    width: 80%;
    color: black; /* text stays solid */
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}


/* Gallery */
.gallery[b-ak4vdwh8hm] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .gallery .card[b-ak4vdwh8hm] {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 15px;
        width: 250px;
        text-align: center;
        backdrop-filter: blur(5px);
    }

    .gallery img[b-ak4vdwh8hm] {
        max-width: 100%;
        border-radius: 8px;
    }
/* /Pages/Indicators/Activity_Registration.razor.rz.scp.css */
body[b-mr2c8ivroz] {
}
/* /Pages/Indicators/Agegroup.razor.rz.scp.css */
.fixed-table[b-22lupzguh3] {
    width: 100%;
    table-layout: fixed; /* Ensures fixed column widths */
    border-collapse: collapse;
    height: 2rem;
}

.fixed-column[b-22lupzguh3] {
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Define individual column widths */
.adm0-column[b-22lupzguh3] {
    width: 200px;
}
/* Adjust as needed */
.adm1-column[b-22lupzguh3] {
    width: 200px;
}

.adm2-column[b-22lupzguh3] {
    width: 180px;
}

.checkbox-column[b-22lupzguh3] {
    width: 80px;
    text-align: center;
}

.actions-column[b-22lupzguh3] {
    width: 150px;
    text-align: center;
}

/* Make sure table headers and data align */
th[b-22lupzguh3], td[b-22lupzguh3] {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Hide the default checkbox */
input[type="checkbox"][b-22lupzguh3] {
    display: none;
}
/* /Pages/Indicators/ApprovalsActivity.razor.rz.scp.css */
.modal-overlay[b-tjagistotd] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-container[b-tjagistotd] {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    position: relative;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    overflow-y: auto;
    max-height: 90vh;
}

.modal-close[b-tjagistotd] {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.table-row[b-tjagistotd] {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .table-row:hover[b-tjagistotd] {
        background-color: #f1f1f1;
    }

.pagination-controls[b-tjagistotd] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}
/* Page layout margin */
body[b-tjagistotd] {
    margin: 0;
    padding: 0;
    background-color: #f5f6fa;
    font-family: 'Segoe UI', sans-serif;
}

.page-container[b-tjagistotd] {
    max-width: 1000px;
    margin: 30px auto; /* Top + bottom, center horizontally */
    padding: 0 20px; /* Left + right padding */
}

/* Section blocks */
.section-activity-details[b-tjagistotd],
.section-geolocation[b-tjagistotd],
.section-participants[b-tjagistotd],
.section-agegroup[b-tjagistotd],
.section-specialgroup[b-tjagistotd],
.section-output[b-tjagistotd],
.section-indicators[b-tjagistotd],
.section-joint-indicators[b-tjagistotd] {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Headings and labels */
.section-title[b-tjagistotd] {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
    padding-left: 12px;
}

.section-subtitle[b-tjagistotd] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #333;
}

/* Form inputs */
input[type="text"][b-tjagistotd],
input[type="number"][b-tjagistotd],
input[type="date"][b-tjagistotd],
select[b-tjagistotd],
.input-country[b-tjagistotd],
.input-region[b-tjagistotd],
.input-subregion[b-tjagistotd],
.input-district[b-tjagistotd],
.input-site[b-tjagistotd],
.input-organization[b-tjagistotd],
.input-activity[b-tjagistotd],
.input-other-activity[b-tjagistotd],
.input-description[b-tjagistotd],
.input-start-date[b-tjagistotd],
.input-end-date[b-tjagistotd],
.input-latitude[b-tjagistotd],
.input-longitude[b-tjagistotd],
.input-men[b-tjagistotd],
.input-women[b-tjagistotd] {
    display: block;
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fff;
    transition: border 0.3s ease-in-out;
}

    input:focus[b-tjagistotd],
    select:focus[b-tjagistotd] {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 3px rgba(0, 123, 255, 0.25);
    }

/* Tables */
table[b-tjagistotd] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th[b-tjagistotd], td[b-tjagistotd] {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

th[b-tjagistotd] {
    background-color: #f8f9fa;
    font-weight: bold;
    text-align: left;
}

/* Checkbox and number inputs in table */
.checkbox-output[b-tjagistotd],
.checkbox-indicator[b-tjagistotd],
.checkbox-joint-indicator[b-tjagistotd],
.input-age-men[b-tjagistotd],
.input-age-women[b-tjagistotd],
.input-special-men[b-tjagistotd],
.input-special-women[b-tjagistotd] {
    width: 100%;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Submit Button */
.btn-submit[b-tjagistotd] {
    background-color: #007bff;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    margin: 0 auto 50px auto;
    transition: background-color 0.2s ease-in-out;
}

    .btn-submit:hover[b-tjagistotd] {
        background-color: #0056b3;
    }

.activity-search-bar[b-tjagistotd] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    padding: 10px;
    gap: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-activity-input[b-tjagistotd] {
    flex: 1;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease-in-out;
}

    .search-activity-input:focus[b-tjagistotd] {
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

.btn-search[b-tjagistotd] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .btn-search:hover[b-tjagistotd] {
        background-color: #0056b3;
    }

.section-title[b-tjagistotd] {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    color: #2c3e50;
}

.search-activity-input[b-tjagistotd] {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.table[b-tjagistotd] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

    .table thead[b-tjagistotd] {
        background-color: #f5f7fa;
    }

    .table th[b-tjagistotd],
    .table td[b-tjagistotd] {
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .table th[b-tjagistotd] {
        font-weight: 600;
        color: #34495e;
        background-color: #f0f0f0;
    }

.table-row[b-tjagistotd] {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .table-row:hover[b-tjagistotd] {
        background-color: #f9f9f9;
    }

.pagination-controls[b-tjagistotd] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    gap: 20px;
}

    .pagination-controls button[b-tjagistotd] {
        background-color: #2b9948;
        color: white;
        border: none;
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        .pagination-controls button:hover:not(:disabled)[b-tjagistotd] {
            background-color: #247c3a;
        }

        .pagination-controls button:disabled[b-tjagistotd] {
            background-color: #ccc;
            cursor: default;
        }

    .pagination-controls span[b-tjagistotd] {
        font-weight: 500;
        font-size: 16px;
    }

.loading-overlay[b-tjagistotd] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loading-text[b-tjagistotd] {
    margin-top: 12px;
    font-size: 18px;
    color: white;
    font-weight: 500;
}

.hourglass[b-tjagistotd] {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 50%;
    animation: hourglassSpin-b-tjagistotd 1s linear infinite;
}

@keyframes hourglassSpin-b-tjagistotd {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Pages/Indicators/District.razor.rz.scp.css */
/*.fixed-table {
    width: 100%;
    table-layout: fixed;*/ /* Ensures fixed column widths */
    /*border-collapse: collapse;
    height: 2rem;
}

.fixed-column {
    white-space: nowrap;*/ /* Prevents text from wrapping */
    /*overflow: hidden;
    text-overflow: ellipsis;
}*/

/* Define individual column widths */
/*.adm0-column {
    width: 200px;
}*/
/* Adjust as needed */
/*.adm1-column {
    width: 200px;
}

.adm2-column {
    width: 180px;
}

.checkbox-column {
    width: 80px;
    text-align: center;
}

.actions-column {
    width: 150px;
    text-align: center;
}*/

/* Make sure table headers and data align */
/*th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}*/

/* Hide the default checkbox */
/*input[type="checkbox"] {
    display: none;
}
.custom-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.custom-cancel-button, .custom-login-button {
    margin: 0 10px;
    padding: 0.5rem 1rem;
    font-weight: bold;
}*/
/* /Pages/Indicators/GandViewActivMon.razor.rz.scp.css */
.modal-overlay[b-0tkdb7lbok] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-container[b-0tkdb7lbok] {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    position: relative;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    overflow-y: auto;
    max-height: 90vh;
}

.modal-close[b-0tkdb7lbok] {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.table-row[b-0tkdb7lbok] {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .table-row:hover[b-0tkdb7lbok] {
        background-color: #f1f1f1;
    }

.pagination-controls[b-0tkdb7lbok] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}
/* Page layout margin */
body[b-0tkdb7lbok] {
    margin: 0;
    padding: 0;
    background-color: #f5f6fa;
    font-family: 'Segoe UI', sans-serif;
}

.page-container[b-0tkdb7lbok] {
    max-width: 1000px;
    margin: 30px auto; /* Top + bottom, center horizontally */
    padding: 0 20px; /* Left + right padding */
}

/* Section blocks */
.section-activity-details[b-0tkdb7lbok],
.section-geolocation[b-0tkdb7lbok],
.section-participants[b-0tkdb7lbok],
.section-agegroup[b-0tkdb7lbok],
.section-specialgroup[b-0tkdb7lbok],
.section-output[b-0tkdb7lbok],
.section-indicators[b-0tkdb7lbok],
.section-joint-indicators[b-0tkdb7lbok] {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Headings and labels */
.section-title[b-0tkdb7lbok] {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
    padding-left: 12px;
}

.section-subtitle[b-0tkdb7lbok] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #333;
}

/* Form inputs */
input[type="text"][b-0tkdb7lbok],
input[type="number"][b-0tkdb7lbok],
input[type="date"][b-0tkdb7lbok],
select[b-0tkdb7lbok],
.input-country[b-0tkdb7lbok],
.input-region[b-0tkdb7lbok],
.input-subregion[b-0tkdb7lbok],
.input-district[b-0tkdb7lbok],
.input-site[b-0tkdb7lbok],
.input-organization[b-0tkdb7lbok],
.input-activity[b-0tkdb7lbok],
.input-other-activity[b-0tkdb7lbok],
.input-description[b-0tkdb7lbok],
.input-start-date[b-0tkdb7lbok],
.input-end-date[b-0tkdb7lbok],
.input-latitude[b-0tkdb7lbok],
.input-longitude[b-0tkdb7lbok],
.input-men[b-0tkdb7lbok],
.input-women[b-0tkdb7lbok] {
    display: block;
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fff;
    transition: border 0.3s ease-in-out;
}

    input:focus[b-0tkdb7lbok],
    select:focus[b-0tkdb7lbok] {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 3px rgba(0, 123, 255, 0.25);
    }

/* Tables */
table[b-0tkdb7lbok] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th[b-0tkdb7lbok], td[b-0tkdb7lbok] {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

th[b-0tkdb7lbok] {
    background-color: #f8f9fa;
    font-weight: bold;
    text-align: left;
}

/* Checkbox and number inputs in table */
.checkbox-output[b-0tkdb7lbok],
.checkbox-indicator[b-0tkdb7lbok],
.checkbox-joint-indicator[b-0tkdb7lbok],
.input-age-men[b-0tkdb7lbok],
.input-age-women[b-0tkdb7lbok],
.input-special-men[b-0tkdb7lbok],
.input-special-women[b-0tkdb7lbok] {
    width: 100%;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Submit Button */
.btn-submit[b-0tkdb7lbok] {
    background-color: #007bff;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    margin: 0 auto 50px auto;
    transition: background-color 0.2s ease-in-out;
}

    .btn-submit:hover[b-0tkdb7lbok] {
        background-color: #0056b3;
    }

.activity-search-bar[b-0tkdb7lbok] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    padding: 10px;
    gap: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-activity-input[b-0tkdb7lbok] {
    flex: 1;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease-in-out;
}

    .search-activity-input:focus[b-0tkdb7lbok] {
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

.btn-search[b-0tkdb7lbok] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .btn-search:hover[b-0tkdb7lbok] {
        background-color: #0056b3;
    }
.section-title[b-0tkdb7lbok] {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    color: #2c3e50;
}

.search-activity-input[b-0tkdb7lbok] {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.table[b-0tkdb7lbok] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

    .table thead[b-0tkdb7lbok] {
        background-color: #f5f7fa;
    }

    .table th[b-0tkdb7lbok],
    .table td[b-0tkdb7lbok] {
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .table th[b-0tkdb7lbok] {
        font-weight: 600;
        color: #34495e;
        background-color: #f0f0f0;
    }

.table-row[b-0tkdb7lbok] {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .table-row:hover[b-0tkdb7lbok] {
        background-color: #f9f9f9;
    }

.pagination-controls[b-0tkdb7lbok] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    gap: 20px;
}

    .pagination-controls button[b-0tkdb7lbok] {
        background-color: #2b9948;
        color: white;
        border: none;
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        .pagination-controls button:hover:not(:disabled)[b-0tkdb7lbok] {
            background-color: #247c3a;
        }

        .pagination-controls button:disabled[b-0tkdb7lbok] {
            background-color: #ccc;
            cursor: default;
        }

    .pagination-controls span[b-0tkdb7lbok] {
        font-weight: 500;
        font-size: 16px;
    }
.loading-overlay[b-0tkdb7lbok] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loading-text[b-0tkdb7lbok] {
    margin-top: 12px;
    font-size: 18px;
    color: white;
    font-weight: 500;
}

.hourglass[b-0tkdb7lbok] {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 50%;
    animation: hourglassSpin-b-0tkdb7lbok 1s linear infinite;
}

@keyframes hourglassSpin-b-0tkdb7lbok {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* /Pages/Indicators/IndicatorList.razor.rz.scp.css */
.fixed-table[b-x7lhrl6xv2] {
    width: 100%;
    table-layout: fixed; /* Ensures fixed column widths */
    border-collapse: collapse;
    height: 2rem;
}

.fixed-column[b-x7lhrl6xv2] {
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Define individual column widths */
.adm0-column[b-x7lhrl6xv2] {
    width: 200px;
}
/* Adjust as needed */
.adm1-column[b-x7lhrl6xv2] {
    width: 200px;
}

.adm2-column[b-x7lhrl6xv2] {
    width: 180px;
}

.checkbox-column[b-x7lhrl6xv2] {
    width: 80px;
    text-align: center;
}

.actions-column[b-x7lhrl6xv2] {
    width: 150px;
    text-align: center;
}

/* Make sure table headers and data align */
th[b-x7lhrl6xv2], td[b-x7lhrl6xv2] {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Hide the default checkbox */
input[type="checkbox"][b-x7lhrl6xv2] {
    display: none;
}
/* /Pages/Indicators/IndicatorList_Joint.razor.rz.scp.css */
.fixed-table[b-zpftm9ziyz] {
    width: 100%;
    table-layout: fixed; /* Ensures fixed column widths */
    border-collapse: collapse;
    height: 2rem;
}

.fixed-column[b-zpftm9ziyz] {
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Define individual column widths */
.adm0-column[b-zpftm9ziyz] {
    width: 200px;
}
/* Adjust as needed */
.adm1-column[b-zpftm9ziyz] {
    width: 200px;
}

.adm2-column[b-zpftm9ziyz] {
    width: 180px;
}

.checkbox-column[b-zpftm9ziyz] {
    width: 80px;
    text-align: center;
}

.actions-column[b-zpftm9ziyz] {
    width: 150px;
    text-align: center;
}

/* Make sure table headers and data align */
th[b-zpftm9ziyz], td[b-zpftm9ziyz] {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Hide the default checkbox */
input[type="checkbox"][b-zpftm9ziyz] {
    display: none;
}
/* /Pages/Indicators/Organization.razor.rz.scp.css */
.fixed-table[b-8zt3049waa] {
    width: 100%;
    table-layout: fixed; /* Ensures fixed column widths */
    border-collapse: collapse;
    height: 2rem;
}

.fixed-column[b-8zt3049waa] {
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Define individual column widths */
.adm0-column[b-8zt3049waa] {
    width: 200px;
}
/* Adjust as needed */
.adm1-column[b-8zt3049waa] {
    width: 200px;
}

.adm2-column[b-8zt3049waa] {
    width: 180px;
}

.checkbox-column[b-8zt3049waa] {
    width: 80px;
    text-align: center;
}

.actions-column[b-8zt3049waa] {
    width: 150px;
    text-align: center;
}

/* Make sure table headers and data align */
th[b-8zt3049waa], td[b-8zt3049waa] {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Hide the default checkbox */
input[type="checkbox"][b-8zt3049waa] {
    display: none;
}
/* /Pages/Indicators/OutputRegistration.razor.rz.scp.css */
.fixed-table[b-8d8htlpiha] {
    width: 100%;
    table-layout: fixed; /* Ensures fixed column widths */
    border-collapse: collapse;
    height: 2rem;
}

.fixed-column[b-8d8htlpiha] {
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Define individual column widths */
.adm0-column[b-8d8htlpiha] {
    width: 200px;
}
/* Adjust as needed */
.adm1-column[b-8d8htlpiha] {
    width: 200px;
}

.adm2-column[b-8d8htlpiha] {
    width: 180px;
}

.checkbox-column[b-8d8htlpiha] {
    width: 80px;
    text-align: center;
}

.actions-column[b-8d8htlpiha] {
    width: 150px;
    text-align: center;
}

/* Make sure table headers and data align */
th[b-8d8htlpiha], td[b-8d8htlpiha] {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Hide the default checkbox */
input[type="checkbox"][b-8d8htlpiha] {
    display: none;
}
/* /Pages/Indicators/Overview.razor.rz.scp.css */
/* General Styling */
body[b-x64r58mbmd] {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
}

/* Dashboard Container */
.p-6[b-x64r58mbmd] {
    padding: 20px;
}

/* Header */
.text-2xl[b-x64r58mbmd] {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 3px solid #007bff;
}

/* Grid Layout */
.grid[b-x64r58mbmd] {
    display: grid;
    gap: 20px;
}

/* Cards */
.bg-white[b-x64r58mbmd] {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

    .bg-white:hover[b-x64r58mbmd] {
        transform: translateY(-5px);
    }

.text-3xl[b-x64r58mbmd] {
    font-size: 30px;
}

.text-gray-500[b-x64r58mbmd] {
    color: #666;
}

/* Progress Indicators */
.progress-grid[b-x64r58mbmd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.progress-circle[b-x64r58mbmd] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#007bff var(--value, 0)%, #e9ecef var(--value, 0)% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #007bff;
    font-size: 18px;
    position: relative;
}

    .progress-circle[b-x64r58mbmd]::after {
        content: "";
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 50%;
        position: absolute;
    }

/* Charts Section */
.grid-cols-2[b-x64r58mbmd] {
    grid-template-columns: repeat(2, 1fr);
}

.chart-container[b-x64r58mbmd] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
}

/* Reports Section */
.report-card[b-x64r58mbmd] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-lg[b-x64r58mbmd] {
    font-size: 18px;
    font-weight: bold;
}

.text-gray-400[b-x64r58mbmd] {
    color: #888;
}
/* /Pages/Indicators/Projects_main.razor.rz.scp.css */
.fixed-table[b-ro1b7l2spu] {
    width: 100%;
    table-layout: fixed; /* Ensures fixed column widths */
    border-collapse: collapse;
    height: 2rem;
}

.fixed-column[b-ro1b7l2spu] {
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Define individual column widths */
.adm0-column[b-ro1b7l2spu] {
    width: 200px;
}
/* Adjust as needed */
.adm1-column[b-ro1b7l2spu] {
    width: 200px;
}

.adm2-column[b-ro1b7l2spu] {
    width: 180px;
}

.checkbox-column[b-ro1b7l2spu] {
    width: 80px;
    text-align: center;
}

.actions-column[b-ro1b7l2spu] {
    width: 150px;
    text-align: center;
}

/* Make sure table headers and data align */
th[b-ro1b7l2spu], td[b-ro1b7l2spu] {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Hide the default checkbox */
input[type="checkbox"][b-ro1b7l2spu] {
    display: none;
}
/* /Pages/Indicators/Region.razor.rz.scp.css */
/*.fixed-table {
    width: 100%;
    table-layout: fixed;*/ /* Ensures fixed column widths */
    /*border-collapse: collapse;
    height: 2rem;
}

.fixed-column {
    white-space: nowrap;*/ /* Prevents text from wrapping */
    /*overflow: hidden;
    text-overflow: ellipsis;
}*/

/* Define individual column widths */
/*.adm0-column {
    width: 200px;
}*/
/* Adjust as needed */
/*.adm1-column {
    width: 200px;
}

.adm2-column {
    width: 180px;
}

.checkbox-column {
    width: 80px;
    text-align: center;
}

.actions-column {
    width: 150px;
    text-align: center;
}*/

/* Make sure table headers and data align */
/*th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}*/

/* Hide the default checkbox */
/*input[type="checkbox"] {
    display: none;
}*/
/* /Pages/Indicators/Sites.razor.rz.scp.css */
/*.fixed-table {
    width: 100%;
    table-layout: fixed;*/ /* Ensures fixed column widths */
/*border-collapse: collapse;
    height: 2rem;
}

.fixed-column {
    white-space: nowrap;*/ /* Prevents text from wrapping */
/*overflow: hidden;
    text-overflow: ellipsis;
}*/

/* Define individual column widths */
/*.adm0-column {
    width: 200px;
}*/
/* Adjust as needed */
/*.adm1-column {
    width: 200px;
}

.adm2-column {
    width: 180px;
}

.checkbox-column {
    width: 80px;
    text-align: center;
}

.actions-column {
    width: 150px;
    text-align: center;
}*/

/* Make sure table headers and data align */
/*th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}*/

/* Hide the default checkbox */
/*input[type="checkbox"] {
    display: none;
}*/

/* Custom checkbox container */
/*.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}*/

/* Custom checkbox appearance */
/*.checkbox-container .custom-checkbox {
        width: 20px;
        height: 20px;
        border: 2px solid #007BFF;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s, border-color 0.2s;
    }*/

/* Checkmark (hidden by default) */
/*.checkbox-container .custom-checkbox::after {
            content: "✅";
            font-size: 16px;
            background-color: white;
            color: white;
            display: none;
        }*/

/* When checkbox is checked */
/*input[type="checkbox"]:checked + .custom-checkbox {
    background-color: deepskyblue;
    border-color: #0056b3;
}*/

/* Show checkmark when checked */
/*input[type="checkbox"]:checked + .custom-checkbox::after {
        display: block;
    }*/

/* Hover effect */
/*.checkbox-container:hover .custom-checkbox {
    border-color: #0056b3;
}*/

/* Label text */
/*.checkbox-container span {
    margin-left: 8px;
    color: #333;
    font-weight: 500;
}*/







/* Hide default checkbox */
/*input[type="checkbox"] {
    display: none;
}*/

/* Custom checkbox container */
/*.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}*/

/* Custom checkbox appearance */
/*.checkbox-container .custom-checkbox {
        width: 24px;
        height: 24px;
        border: 2px solid #007BFF;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s, border-color 0.2s;
        background-color: white;
    }*/

/* Add SVG as background when checked */
/*input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #007BFF;
    border-color: #0056b3;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" fill="white"><path d="M586.606845 536.805517c0 15.99951-12.741149 28.969195-28.569011 28.969196-15.882789-0.126529-28.664153-13.086406-28.569012-28.969196v-30.111877c0-20.341701 7.085609-39.995831 19.884628-55.653027L782.761696 166.835494H104.817788l233.409226 284.2061a87.920797 87.920797 0 0 1 19.826758 55.653027v487.388689c0 15.99951-12.741149 28.969195-28.569011 28.969196-15.881808-0.126529-28.664153-13.086406-28.569012-28.969196V506.694621a29.254621 29.254621 0 0 0-6.571647-18.514391L60.934876 203.917241A58.510222 58.510222 0 0 1 47.678784 166.777625c0-31.939188 25.599019-57.93741 57.139004-57.93741H782.761696c13.368889 0 26.283648 4.743356 36.568766 13.427739 24.22682 20.511387 27.540107 57.081134 7.314146 81.708138L593.235381 488.181211a29.254621 29.254621 0 0 0-6.628536 18.51341v30.111877zM533.35296 659.65314"/></svg>');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}*/

/* Hover effect */
/*.checkbox-container:hover .custom-checkbox {
    border-color: #0056b3;
}*/

/* Label text */
/*.checkbox-container span {
    margin-left: 8px;
    color: #333;
    font-weight: 500;
}*/

/* /Pages/Indicators/Specialgroup.razor.rz.scp.css */
/*.fixed-table {
    width: 100%;
    table-layout: fixed;*/ /* Ensures fixed column widths */
    /*border-collapse: collapse;
    height: 2rem;
}

.fixed-column {
    white-space: nowrap;*/ /* Prevents text from wrapping */
    /*overflow: hidden;
    text-overflow: ellipsis;
}*/

/* Define individual column widths */
/*.adm0-column {
    width: 200px;
}*/
/* Adjust as needed */
/*.adm1-column {
    width: 200px;
}

.adm2-column {
    width: 180px;
}

.checkbox-column {
    width: 80px;
    text-align: center;
}

.actions-column {
    width: 150px;
    text-align: center;
}*/

/* Make sure table headers and data align */
/*th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}*/

/* Hide the default checkbox */
/*input[type="checkbox"] {
    display: none;
}*/
/* /Pages/Indicators/Subregions.razor.rz.scp.css */
/*.fixed-table {
    width: 100%;
    table-layout: fixed;*/ /* Ensures fixed column widths */
    /*border-collapse: collapse;
    height: 2rem;
}

.fixed-column {
    white-space: nowrap;*/ /* Prevents text from wrapping */
    /*overflow: hidden;
    text-overflow: ellipsis;
}*/

/* Define individual column widths */
/*.adm0-column {
    width: 200px;
}*/
/* Adjust as needed */
/*.adm1-column {
    width: 200px;
}

.adm2-column {
    width: 180px;
}

.checkbox-column {
    width: 80px;
    text-align: center;
}

.actions-column {
    width: 150px;
    text-align: center;
}*/

/* Make sure table headers and data align */
/*th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}*/

/* Hide the default checkbox */
/*input[type="checkbox"] {
    display: none;
}*/

/* Custom checkbox container */
/*.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}*/

    /* Custom checkbox appearance */
    /*.checkbox-container .custom-checkbox {
        width: 20px;
        height: 20px;
        border: 2px solid #007BFF;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s, border-color 0.2s;
    }*/

        /* Checkmark (hidden by default) */
        /*.checkbox-container .custom-checkbox::after {
            content: "✅";
            font-size: 16px;
            background-color: white;
            color: white;
            display: none;
        }*/

/* When checkbox is checked */
/*input[type="checkbox"]:checked + .custom-checkbox {
    background-color: deepskyblue;
    border-color: #0056b3;
}*/

    /* Show checkmark when checked */
    /*input[type="checkbox"]:checked + .custom-checkbox::after {
        display: block;
    }*/

/* Hover effect */
/*.checkbox-container:hover .custom-checkbox {
    border-color: #0056b3;
}*/

/* Label text */
/*.checkbox-container span {
    margin-left: 8px;
    color: #333;
    font-weight: 500;
}*/







/* Hide default checkbox */
/*input[type="checkbox"] {
    display: none;
}*/

/* Custom checkbox container */
/*.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}*/

    /* Custom checkbox appearance */
    /*.checkbox-container .custom-checkbox {
        width: 24px;
        height: 24px;
        border: 2px solid #007BFF;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s, border-color 0.2s;
        background-color: white;
    }*/

/* Add SVG as background when checked */
/*input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #007BFF;
    border-color: #0056b3;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" fill="white"><path d="M586.606845 536.805517c0 15.99951-12.741149 28.969195-28.569011 28.969196-15.882789-0.126529-28.664153-13.086406-28.569012-28.969196v-30.111877c0-20.341701 7.085609-39.995831 19.884628-55.653027L782.761696 166.835494H104.817788l233.409226 284.2061a87.920797 87.920797 0 0 1 19.826758 55.653027v487.388689c0 15.99951-12.741149 28.969195-28.569011 28.969196-15.881808-0.126529-28.664153-13.086406-28.569012-28.969196V506.694621a29.254621 29.254621 0 0 0-6.571647-18.514391L60.934876 203.917241A58.510222 58.510222 0 0 1 47.678784 166.777625c0-31.939188 25.599019-57.93741 57.139004-57.93741H782.761696c13.368889 0 26.283648 4.743356 36.568766 13.427739 24.22682 20.511387 27.540107 57.081134 7.314146 81.708138L593.235381 488.181211a29.254621 29.254621 0 0 0-6.628536 18.51341v30.111877zM533.35296 659.65314"/></svg>');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}*/

/* Hover effect */
/*.checkbox-container:hover .custom-checkbox {
    border-color: #0056b3;
}*/

/* Label text */
/*.checkbox-container span {
    margin-left: 8px;
    color: #333;
    font-weight: 500;
}*/

/* /Pages/Loading/Loadingprocess.razor.rz.scp.css */
.spinner-backdrop[b-5u2qal1xwu] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

.radar-loader[b-5u2qal1xwu] {
    position: relative;
    width: 80px;
    height: 80px;
}

.ring[b-5u2qal1xwu] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: radar-pulse-b-5u2qal1xwu 1.5s infinite ease-out;
}

    .ring:nth-child(2)[b-5u2qal1xwu] {
        animation-delay: 0.5s;
    }

    .ring:nth-child(3)[b-5u2qal1xwu] {
        animation-delay: 1s;
    }

@keyframes radar-pulse-b-5u2qal1xwu {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.loading-text[b-5u2qal1xwu] {
    margin-top: 15px;
    font-size: 1.2em;
    color: #fff;
    font-weight: bold;
}
/* /Pages/Mapfilters.razor.rz.scp.css */
/*.indicator-panel {
    position: absolute;
    top: 2vh;
    right: 2vw;
    width: 40vw;*/ /* 1/4 of the screen */
    /*height: 96vh;
    background-color: rgba(255, 255, 255, 0.95);*/ /* Slight transparency */
    /*padding: 1.5rem;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}*/
.map-container[b-qwfskeoth0] {
    position: relative;
    height: 100vh;
    width: 60vw;
}
#map[b-qwfskeoth0] {
    position: absolute;
    top: 2vw;
    left: 0;
    height: 100vh;
    width: 58.0vw;
    z-index: 1; /* Keep it behind the floating panel */
}
.indicator-panel[b-qwfskeoth0] {
    position: absolute;
    right: 0.2vw;
    top: 5vh;
    width: 40vw;
    padding: 10px;
    border-radius: 12px;
    opacity: 90%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.95); /* Slight transparency */
    height: 96vh;
    background-color: white;
    overflow-y: auto;
    z-index: 999;
}
.country-btn[b-qwfskeoth0] {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

    .country-btn.selected-country[b-qwfskeoth0] {
        background-color: #11358a;
        color: white;
        border-color: #11358a;
    }

/*.selected-region-effect {
    transition: all 0.5s ease-in-out;
    stroke: #ff9900 !important;
    stroke-width: 3 !important;
    fill: #4d6bb1 !important;
    fill-opacity: 0.8 !important;
}

.fade-region {
    transition: all 0.3s ease-out;
    fill-opacity: 0.6 !important;
}*/

/* Marker Icon Layer */
.custom-icon[b-qwfskeoth0] {
    z-index: 1000 !important;
}

/* Selected region effect */
.selected-region-effect[b-qwfskeoth0] {
    transition: all 0.5s ease-in-out;
    stroke: #ff9900 !important;
    stroke-width: 3 !important;
    fill: #ffcc66 !important;
    fill-opacity: 0.8 !important;
}

/* Fade transition for previous region */
.fade-region[b-qwfskeoth0] {
    transition: all 0.3s ease-out;
    fill-opacity: 0.6 !important;
}
/* Grid container */
.grid[b-qwfskeoth0] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.4rem;
    margin-top: 1rem;
}

/* Card styling */
Card[b-qwfskeoth0], .card[b-qwfskeoth0] {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 1rem;
}

    Card:hover[b-qwfskeoth0], .card:hover[b-qwfskeoth0] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }
.card-center[b-qwfskeoth0] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* optional if you want it to fill the card */
    text-align: center;
    font-size: 7.2rem;
    font-weight: 600;
}
.pval[b-qwfskeoth0] {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
}
/* Card content area */
CardContent[b-qwfskeoth0], .card-content[b-qwfskeoth0] {
    padding: 0.5rem 0;
}

/* Headings */
.card h2[b-qwfskeoth0] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

/* Paragraph data */
.card p[b-qwfskeoth0], CardContent p[b-qwfskeoth0] {
    font-size: 1.4rem;
    color: #333;
   /* border:1px solid red;
    border-radius: 75%;*/
    margin: 0.2rem 0;
}

    /* Optional: percentage formatting */
    .card p:has(span.percent)[b-qwfskeoth0] {
        font-weight: bold;
        color: #28a745;
        font-size: 1.2rem;
    }
/*    start*/


_Card[b-qwfskeoth0], ._card[b-qwfskeoth0] {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0.9rem;
}

    _Card:hover[b-qwfskeoth0], ._card:hover[b-qwfskeoth0] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

._card-center[b-qwfskeoth0] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* optional if you want it to fill the card */
    text-align: center;
    font-size: 7.2rem;
    font-weight: 600;
}

._pval[b-qwfskeoth0] {
    text-align: left;
    font-size: 20px;
    font-weight: 300;
}
/* Card content area */
_CardContent[b-qwfskeoth0], ._card-content[b-qwfskeoth0] {
    padding: 0.2rem 0;
}

/* Headings */
._card h2[b-qwfskeoth0] {
    font-size: 1.2rem;
    font-weight: 300;
    color: #11358a;
    margin-bottom: 0.2rem;
}

/* Paragraph data */
._card p[b-qwfskeoth0], _CardContent p[b-qwfskeoth0] {
    font-size: 1.0rem;
    color: #333;
   
    /*margin: 0.2rem 0;*/
}

    /* Optional: percentage formatting */
    ._card p:has(span.percent)[b-qwfskeoth0] {
        font-weight: bold;
        color: #28a745;
        font-size: 1.2rem;
    }

.info-icon[b-qwfskeoth0] {
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
    color: #007bff;
    margin-left: 6px;
    vertical-align: middle;
}

    .info-icon:hover[b-qwfskeoth0] {
        color: #0056b3;
    }



.btn-dark[b-qwfskeoth0] {
    background-color: #343a40;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
}

/* Responsive charts */
.bar-chart[b-qwfskeoth0] {
    width: 100% !important;
    max-width: 500px;
    height: auto;
}
.card[b-qwfskeoth0] {
    animation: fadeInUp-b-qwfskeoth0 0.5s ease-in-out;
}

@keyframes fadeInUp-b-qwfskeoth0 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
._genderchart[b-qwfskeoth0] {
    width: 100% !important;
    max-width: 800px;
    height: 200px !important;
    margin: 20px auto;
    display: block;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 10px;
}
@media (max-width: 600px) {
    ._genderchart[b-qwfskeoth0] {
        height: 300px !important;
        padding: 5px;
    }
}


/*progress bar*/
.progress-bar-container[b-qwfskeoth0] {
    margin-bottom: 1rem;
}

.progress-label[b-qwfskeoth0] {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.progress-track[b-qwfskeoth0] {
    background-color: #eee;
    height: 22px;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill[b-qwfskeoth0] {
    height: 100%;
    transition: width 0.4s ease;
    display: flex;
    align-items: center;
    padding-left: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.bar-orange-fade[b-qwfskeoth0] {
    background-color: #ffcc80;
}

.bar-orange-mid[b-qwfskeoth0] {
    background-color: #ffa726;
}

.bar-green-fade[b-qwfskeoth0] {
    background-color: #a5d6a7;
}

.bar-green-strong[b-qwfskeoth0] {
    background-color: #66bb6a;
}
input[type="checkbox"][b-qwfskeoth0] {
    display: inline-block !important;
}
/* /Shared/DashLayout.razor.rz.scp.css */
/* ===============================
   DESKTOP (default)
   =============================== */

/* Thin top bar */
.ribbon-topbar[b-b79i2bygc1] {
    height: 28px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    padding: 0 8px;
    background: linear-gradient(#f5f5f7,#e7e7ea);
    border-bottom: 1px solid #d1d1d6;
}

.topbar-left[b-b79i2bygc1] {
    display: flex;
    gap: 6px;
}

.topbar-center[b-b79i2bygc1] {
    text-align: center;
    font-size: .85rem;
    color: #666;
}

.topbar-right[b-b79i2bygc1] {
    display: flex;
    gap: 6px;
}

.tb-btn[b-b79i2bygc1] {
    border: none;
    background: transparent;
    padding: 2px 6px;
    cursor: pointer;
    color: #6d6d6d;
}

    .tb-btn:hover[b-b79i2bygc1] {
        background: #ececec;
        border-radius: 4px;
    }

.close-btn[b-b79i2bygc1] {
    color: #cc3b3b;
}

/* Tabs */
.ribbon-tabs[b-b79i2bygc1] {
    display: flex;
    gap: 2px;
    padding: 6px 10px 0 10px;
    background: linear-gradient(#f8f8f9,#ebebee);
    border-bottom: 1px solid #cfcfd4;
    flex-wrap: nowrap;
}

.tab-btn[b-b79i2bygc1] {
    border: 1px solid transparent;
    border-bottom: none;
    padding: 7px 14px;
    border-radius: 6px 6px 0 0;
    font-weight: 600;
    color: #4f4f4f;
    cursor: pointer;
    margin-bottom: -1px;
    transition: box-shadow .15s ease, background .15s ease, border-color .15s ease, transform .08s ease;
}

    .tab-btn.is-active[b-b79i2bygc1] {
        --accent: #0ea5e9;
        background: rgba(14,165,233,.08);
        border-color: var(--accent);
        box-shadow: 0 0 0 1px rgba(14,165,233,.25) inset, 0 0 10px rgba(14,165,233,.55);
        transform: translateY(-1px);
        animation: glow-pop-b-b79i2bygc1 .25s ease-out;
    }

    .tab-btn:focus-visible[b-b79i2bygc1] {
        outline: none;
        box-shadow: 0 0 0 1px var(--accent, #0ea5e9) inset, 0 0 0 2px rgba(14,165,233,.5);
    }

/* Ribbon bar */
.ribbon-bar[b-b79i2bygc1] {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #cfcfd4;
    border-bottom: 1px solid #e3e3e3;
    min-height: 116px;
    overflow-x: auto;
}

/* Groups */
.ribbon-group[b-b79i2bygc1] {
    border-right: 1px solid #efefef;
    min-width: 190px;
    padding: 6px 10px 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

    .ribbon-group:last-child[b-b79i2bygc1] {
        border-right: none;
    }

.ribbon-items[b-b79i2bygc1] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.ribbon-group-title[b-b79i2bygc1] {
    text-align: center;
    font-size: .68rem;
    color: #7a7a7a;
    margin-top: 6px;
}

/* Actions */
.ribbon-action[b-b79i2bygc1] {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px 8px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background: #fafafa;
    min-width: 120px;
    cursor: pointer;
    box-shadow: 0 1px 0 #fff inset;
    transition: background .15s, border-color .15s, transform .08s, box-shadow .15s ease;
}

    .ribbon-action:hover[b-b79i2bygc1] {
        background: #f3f3f3;
        border-color: #d9d9d9;
    }

    .ribbon-action:active[b-b79i2bygc1] {
        transform: translateY(1px);
    }

    .ribbon-action i[b-b79i2bygc1] {
        font-size: 16px;
    }

    .ribbon-action .action-text[b-b79i2bygc1] {
        display: flex;
        flex-direction: column;
        line-height: 1.05;
    }

        .ribbon-action .action-text strong[b-b79i2bygc1] {
            font-size: .78rem;
            color: #333;
        }

        .ribbon-action .action-text span[b-b79i2bygc1] {
            font-size: .68rem;
            color: #8a8a8a;
        }

    /* Active ribbon action (glow) */
    .ribbon-action.is-active[b-b79i2bygc1] {
        --accent: var(--accent, #22d3ee);
        background: rgba(34,211,238,.08);
        border-color: var(--accent);
        box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 60%, white 40%) inset, 0 0 10px var(--accent);
        transform: translateY(-1px);
        animation: glow-pop-b-b79i2bygc1 .25s ease-out;
    }

@supports not (color-mix(in srgb, white, black)) {
    .ribbon-action.is-active[b-b79i2bygc1] {
        box-shadow: 0 0 0 1px rgba(34,211,238,.5) inset, 0 0 10px var(--accent);
    }
}

.ribbon-action:focus-visible[b-b79i2bygc1] {
    outline: none;
    box-shadow: 0 0 0 1px var(--accent, #22d3ee) inset, 0 0 0 2px rgba(34,211,238,.5);
}

/* Glow animation */
@keyframes glow-pop-b-b79i2bygc1 {
    0% {
        box-shadow: 0 0 0 0 var(--accent, #22d3ee);
    }

    100% {
        box-shadow: 0 0 16px var(--accent, #22d3ee);
    }
}

/* Shell + Body */
.sme-shell[b-b79i2bygc1] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ribbon-window[b-b79i2bygc1] {
    flex: 0 0 auto;
    position: relative;
    z-index: 10;
}

.sme-body[b-b79i2bygc1] {
    flex: 1 1 auto;
    overflow: auto;
    padding: 14px;
    background: #f7f7f7;
}

/* ===============================
   MOBILE (≤ 768px)
   =============================== */
@media (max-width: 768px) {
    /* Top bar */
    .ribbon-topbar[b-b79i2bygc1] {
        grid-template-columns: 1fr auto;
        height: auto;
        padding: 6px;
    }

    .topbar-left[b-b79i2bygc1] {
        display: none;
    }

    .topbar-center[b-b79i2bygc1] {
        font-size: .8rem;
        text-align: left;
    }

    .topbar-right[b-b79i2bygc1] {
        gap: 4px;
    }

    .tb-btn[b-b79i2bygc1] {
        padding: 4px;
        font-size: .8rem;
    }

    /* Tabs */
    .ribbon-tabs[b-b79i2bygc1] {
        flex-wrap: wrap;
        justify-content: center;
        padding: 4px;
    }

    .tab-btn[b-b79i2bygc1] {
        font-size: .75rem;
        padding: 5px 10px;
    }

    /* Ribbon bar stacks vertically */
    .ribbon-bar[b-b79i2bygc1] {
        flex-direction: column;
        min-height: auto;
        padding: 6px;
    }

    .ribbon-group[b-b79i2bygc1] {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid #efefef;
        padding: 8px 0;
    }

    .ribbon-items[b-b79i2bygc1] {
        justify-content: center;
        gap: 8px;
    }

    .ribbon-group-title[b-b79i2bygc1] {
        font-size: .65rem;
        margin-top: 4px;
    }

    /* Actions shrink */
    .ribbon-action[b-b79i2bygc1] {
        min-width: auto;
        flex: 1 1 auto;
        justify-content: center;
        padding: 8px;
    }

        .ribbon-action .action-text strong[b-b79i2bygc1] {
            font-size: .7rem;
        }

        .ribbon-action .action-text span[b-b79i2bygc1] {
            display: none;
        }

    /* Body padding tighter */
    .sme-body[b-b79i2bygc1] {
        padding: 8px;
    }
}

.ribbon-toggle[b-b79i2bygc1] {
    display: flex;
    justify-content: flex-end;
    padding: 2px 10px;
    background: #f8f8f9;
    border-bottom: 1px solid #cfcfd4;
    gap: 6px;
}

    .ribbon-toggle button[b-b79i2bygc1] {
        border: none;
        background: transparent;
        cursor: pointer;
        color: #555;
        padding: 4px 6px;
        font-size: 14px;
    }

        .ribbon-toggle button:hover[b-b79i2bygc1] {
            background: #ececec;
            border-radius: 4px;
        }

.pin-btn.is-pinned[b-b79i2bygc1] {
    color: #0ea5e9;
}

/* Collapsed ribbon */
.ribbon-bar.collapsed[b-b79i2bygc1] {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    transition: max-height .25s ease, padding .25s ease;
}

.ribbon-bar[b-b79i2bygc1] {
    transition: max-height .25s ease, padding .25s ease;
}
/* By default hide toggle (desktop) */
.ribbon-toggle[b-b79i2bygc1] {
    display: none;
}

/* Show on mobile only */
@media (max-width: 768px) {
    .ribbon-toggle[b-b79i2bygc1] {
        display: flex;
        justify-content: flex-end;
        padding: 2px 10px;
        background: #f8f8f9;
        border-bottom: 1px solid #cfcfd4;
        gap: 6px;
    }
}

/* === Icon Glow Enhancements === */

.ribbon-action i[b-b79i2bygc1] {
    font-size: 18px;
    color: var(--accent, #888);
    transition: all 0.3s ease;
   /* text-shadow: 0 0 4px color-mix(in srgb, var(--accent, #888) 60%, transparent);*/
}

.ribbon-action:hover i[b-b79i2bygc1] {
    transform: scale(1.15);
    text-shadow: 0 0 10px var(--accent, #888), 0 0 20px var(--accent, #888);
}

.ribbon-action.is-active i[b-b79i2bygc1] {
    color: var(--accent, #22d3ee);
    text-shadow: 0 0 12px var(--accent, #22d3ee), 0 0 24px var(--accent, #22d3ee);
    animation: icon-glow-pulse-b-b79i2bygc1 1.2s ease-in-out infinite alternate;
}

/* Subtle glowing pulse */
@keyframes icon-glow-pulse-b-b79i2bygc1 {
    0% {
        text-shadow: 0 0 6px var(--accent, #22d3ee);
    }

    100% {
        text-shadow: 0 0 16px var(--accent, #22d3ee);
    }
}


/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-fsau30eprx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-fsau30eprx] {
    flex: 1;
}

.sidebar[b-fsau30eprx] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-fsau30eprx] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-fsau30eprx]  a, .top-row .btn-link[b-fsau30eprx] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-fsau30eprx] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-fsau30eprx] {
        display: none;
    }

    .top-row.auth[b-fsau30eprx] {
        justify-content: space-between;
    }

    .top-row a[b-fsau30eprx], .top-row .btn-link[b-fsau30eprx] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-fsau30eprx] {
        flex-direction: row;
    }

    .sidebar[b-fsau30eprx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-fsau30eprx] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-fsau30eprx], article[b-fsau30eprx] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-60pgg4xbf9] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-60pgg4xbf9] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-60pgg4xbf9] {
    font-size: 1.1rem;
}

.oi[b-60pgg4xbf9] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-60pgg4xbf9] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-60pgg4xbf9] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-60pgg4xbf9] {
        padding-bottom: 1rem;
    }

    .nav-item[b-60pgg4xbf9]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-60pgg4xbf9]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-60pgg4xbf9]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-60pgg4xbf9] {
        display: none;
    }

    .collapse[b-60pgg4xbf9] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
