/* =================================================================
   गेट टुगेदर मीटिंग - ग्लोबल स्टाइलशीट
   ================================================================= */

/* 1. CSS वेरिएबल्स (यहां से आप पूरी वेबसाइट का कलर बदल सकते हैं) */
:root {
    --primary-color: #d63384; /* गुलाबी/गुलाबी रंग */
    --secondary-color: #0d6efd; /* लड़कों के लिए नीला रंग */
    --dark-color: #212529; /* गहरा टेक्स्ट रंग */
    --light-color: #f8f9fa; /* हल्का बैकग्राउंड रंग */
    --white-color: #ffffff;
    --grey-color: #6c757d; /* हल्का टेक्स्ट रंग */
    --border-color: #dee2e6;
    --success-color: #198754;
    --error-color: #dc3545;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
}

/* 2. ग्लोबल रीसेट और बॉडी स्टाइल */
* {

  box-sizing: border-box;
  margin: 0;
  padding: 3px;
}





body {
    font-family: var(--font-body);
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.7;
}
body.index-page {
  padding: 0px !important;
}

/* 3. लेआउट और कंटेनर */
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}




/* 4. हेडर और फुटर */
header {
    background: var(--white-color);
    padding: 8px 8px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 0px;
    height: 65px;
}
header h1 {
    font-family: var(--font-heading);
}
header h1 a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}
header nav a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--grey-color);
    font-weight: 500;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}
header nav a:hover, header nav a.active {
    color: var(--primary-color);
}
footer {
        text-align: center;
    margin-top: 21px;
    padding: 10px;
    color: #020202;
    border-top: 1px solid var(--border-color);
    background-color: #ffe1e1;
}

/* 5. बटन स्टाइल */
.btn {
    display: inline-block;
    padding: 6px 30px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 50px;
    color: var(--white-color);
    font-weight: bold;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.boy-btn { background-color: var(--secondary-color); }
.girl-btn { background-color: var(--primary-color); }

/* 6. फॉर्म स्टाइल */
.form-container {
            background: #fff3f3;
    padding: 3px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 10px auto;
    border: 2px solid black;
}
.form-container h2 {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 10px;
}
.form-container p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--grey-color);
}
.form-group {
    margin-bottom: 0px;
}
.form-group label {
    display: block;
    margin-bottom: 1px;
    font-weight: bold;
    font-family: var(--font-heading);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="password"],
.form-group input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}
.form-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    transition: background-color 0.3s ease;
}
.form-submit-btn:hover {
    background-color: #157347;
}


/* 7. मैसेज और अलर्ट */
.message { padding: 15px; margin-bottom: 20px; border-radius: 5px; border: 1px solid transparent; }
.message.success { background-color: #d1e7dd; color: #0f5132; border-color: #badbcc;}
.message.error { background-color: #f8d7da; color: #842029; border-color: #f5c2c7; }


/* =================================================================
   पेज स्पेसिफिक स्टाइल
   ================================================================= */

/* 8. Index Page स्टाइल */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    background: var(--white-color);
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}
.hero-section h2 {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--dark-color);
    margin-bottom: 15px;
}
.hero-section p {
    font-size: 1.2rem;
    color: var(--grey-color);
    max-width: 650px;
    margin: 0 auto;
}
.choice-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.choice-card {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    width: 350px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
}
.choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.choice-card i { margin-bottom: 20px; }
.choice-card.boy { border-top-color: var(--secondary-color); }
.choice-card.girl { border-top-color: var(--primary-color); }
.choice-card.boy i { color: var(--secondary-color); }
.choice-card.girl i { color: var(--primary-color); }
.choice-card h3 { font-family: var(--font-heading); font-size: 1.7rem; margin-bottom: 15px; }
.choice-card p { color: var(--grey-color); margin-bottom: 25px; }


/* 9. Dashboard Page स्टाइल */
.dashboard-header {
    margin-bottom: 30px;
}
.dashboard-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
}
.dashboard-header h2 span {
    color: var(--primary-color);
    font-weight: 700;
}

.profile-card-label { /* यह लेबल कार्ड को क्लिक करने योग्य बनाएगा */
    display: block;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}
.profile-card-label:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.profile-card-label input[type="checkbox"] {
    display: none; /* चेकबॉक्स को छिपा दें */
}
/* जब चेकबॉक्स चेक हो जाए तो कार्ड का स्टाइल बदलें */
.profile-card-label input[type="checkbox"]:checked + .profile-card-content {
    border-color: var(--primary-color);
}
.profile-card-label input[type="checkbox"]:checked + .profile-card-content::after {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--white-color);
    background-color: var(--primary-color);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}
.profile-card-content {
    border: 2px solid transparent;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}
.profile-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.profile-card-info {
    padding: 1px;
}
.profile-card-info h4 {
    font-family: var(--font-heading);
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.profile-card-info p {
    font-size: 0.9rem;
    color: #000;
}
.submit-preferences-container {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(255,255,255,1) 70%, rgba(255,255,255,0));
    padding: 20px 0;
    text-align: center;
}
.submit-preferences-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: var(--primary-color);
    box-shadow: var(--shadow-md);
}





/* =================================================================
   10. एडमिन डैशबोर्ड स्पेसिफिक स्टाइल
   ================================================================= */

.admin-container {
    padding: 0;
}

.admin-header {
    display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 15px;
  background-color: #4326d0;
  color: var(--white-color);
  border-radius: 10px;
}

.admin-header h2 {
    font-family: var(--font-heading);
    margin: 0;
}

.admin-header .btn {
    background-color: var(--primary-color);
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: #f6c0c0;
  padding: 5px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 8px solid;
}
.stat-card .icon {
    font-size: 2.5rem;
    padding: 15px;
    border-radius: 50%;
    color: var(--white-color);
}
.stat-card.users .icon { background-color: var(--secondary-color); }
.stat-card.pending .icon { background-color: #fd7e14; } /* Orange */
.stat-card.matches .icon { background-color: var(--success-color); }

.stat-card.users { border-left-color: var(--secondary-color); }
.stat-card.pending { border-left-color: #fd7e14; }
.stat-card.matches { border-left-color: var(--success-color); }

.stat-card .info .number {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}
.stat-card .info .title {
    font-size: 1rem;
    color: var(--grey-color);
}

.content-box {
    background-color: #dedede;
  padding: 10px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  border: 2px solid #505050;
}

.content-box h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}
.data-table th, .data-table td {
    padding: 8px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.data-table thead th {
    background-color: var(--light-color);
    font-family: var(--font-heading);
    font-weight: 500;
}
.data-table tbody tr:nth-child(even) {
    background-color: var(--light-color);
}
.data-table tbody tr:hover {
    background-color: #e9ecef;
}

.btn-small {
    padding: 5px 12px;
    font-size: 0.85rem;
    border-radius: 5px;
    font-weight: normal;
    background-color: #ffd702;
}
.btn-primary { background-color: var(--secondary-color); }
.btn-success { background-color: var(--success-color); }
.btn-danger { background-color: var(--error-color); }


/* एडमिन प्रोफाइल व्यू पेज स्टाइल */
.profile-view-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}
.profile-details-card, .profile-actions-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}
.profile-details-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 15px;
}
.profile-details-card h4 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.profile-details-card p {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--light-color);
    padding-bottom: 10px;
}
.profile-details-card p strong {
    color: var(--grey-color);
    min-width: 100px;
    display: inline-block;
}


/* 11. यूजर डैशबोर्ड में म्यूचुअल मैच सेक्शन के लिए स्टाइल */
.mutual-matches-section {
    margin-top: 40px;
    padding-top: 20px;
}
.mutual-matches-section h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--success-color);
}
.mutual-matches-section hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin-bottom: 20px;
}
.profile-card-label.static { /* ताकि मैच हुए कार्ड पर क्लिक न हो */
    cursor: default;
}
.profile-card-label.static:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}










/* 12. एडमिन मैच व्यू पॉपअप (Modal) स्टाइल */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); }
.modal-content { background-color: #faeeee; margin: 10% auto; padding: 10px; border: 1px solid #888; width: 98%; max-width: 600px; border-radius: 10px; position: relative; animation-name: animatetop; animation-duration: 0.4s }
@keyframes animatetop { from {top: -300px; opacity: 0} to {top: 0; opacity: 1} }
.modal-header { padding-bottom: 15px; border-bottom: 1px solid var(--border-color); margin-bottom: 20px; }
.modal-header h3 { font-family: var(--font-heading); margin: 0; }
.modal-close { color: #aaa; float: right; font-size: 28px; font-weight: bold; position: absolute; top: 15px; right: 25px; }
.modal-close:hover, .modal-close:focus { color: black; text-decoration: none; cursor: pointer; }
.modal-body ul { list-style-type: none; padding: 0; }
.modal-body ul li { padding: 10px; border-bottom: 1px solid #eee; }
.modal-body ul li:last-child { border-bottom: none; }












/* 13. एडमिन पॉपअप के अंदर प्रोफाइल कार्ड के लिए स्टाइल */

.modal-body .modal-card-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-profile-card {
    display: flex;
  align-items: center;
  gap: 10px;
  background-color: #d5e6f6f5;
  padding: 2px;
  border-radius: 8px;
  border: 1px solid #000;
}

.modal-profile-card .modal-card-img {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* गोल फोटो */
    object-fit: cover;
    border: 3px solid var(--white-color);
    box-shadow: var(--shadow-sm);
}

.modal-profile-card .modal-card-info {
    flex-grow: 1;
}

.modal-profile-card .modal-card-info h4 {
    font-family: var(--font-heading);
    margin: 0 0 8px 0;
    color: var(--primary-color);
}

.modal-profile-card .modal-card-info h4 .match-id {
    font-weight: 500;
    color: var(--grey-color);
    font-size: 0.9em;
}

.modal-profile-card .modal-card-info p {
    margin: 4px 0;
    font-size: 0.95rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-profile-card .modal-card-info p i {
    color: var(--grey-color);
    width: 16px; /* आइकन को अलाइन करने के लिए */
    text-align: center;
}












/* 14. रजिस्ट्रेशन फॉर्म के लिए एडवांस स्टाइल */

.registration-form .form-title {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.registration-form .form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--grey-color);
    font-size: 1.1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* दो बराबर कॉलम */
    gap: 5px 25px; /* रो और कॉलम के बीच गैप */
}

.form-group.full-width {
    grid-column: 1 / 3; /* यह फील्ड दोनों कॉलम की जगह लेगा */
}

/* कस्टम फाइल अपलोड बटन */
.file-upload-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-upload-wrapper input[type="file"] {
    display: none; /* असली बटन को छिपा दें */
}

.file-upload-label {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}
.file-upload-label:hover {
    background-color: #0b5ed7;
}
.file-upload-label i {
    margin-right: 8px;
}

.file-name-display {
    color: var(--grey-color);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* मोबाइल स्क्रीन के लिए (जब स्क्रीन 768px से कम हो) */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr; /* एक कॉलम में बदल दें */
    }
    .form-group.full-width {
        grid-column: 1 / 2; /* एक ही कॉलम है तो डिफ़ॉल्ट व्यवहार करें */
    }
}






/* 15. पेजिनेशन (Pagination) के लिए स्टाइल */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.pagination a {
    color: var(--primary-color);
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid var(--border-color);
    margin: 0 4px;
    border-radius: 5px;
}
.pagination a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.pagination a:hover:not(.active) {
    background-color: #ddd;
}
.pagination a.disabled {
    color: #ccc;
    pointer-events: none;
    border-color: #eee;
}






/* 17. नए रजिस्ट्रेशन फॉर्म फील्डसेट के लिए स्टाइल */
fieldset {
    border: 1px solid #0862bbdb;
    border-radius: 8px;
    padding: 0px;
    margin-bottom: 20px;
}
legend {
    padding: 0 10px;
    font-weight: bold;
    font-family: var(--font-heading);
    color: var(--primary-color);
}
.time-picker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    resize: vertical; /* यूजर को वर्टिकली रीसाइज करने दें */
}





/* 18. नए लॉगिन पेज के लिए स्टाइल */

.login-form-wrapper {
    max-width: 450px; /* फॉर्म की चौड़ाई कम की */
    margin: 40px auto;
    padding: 40px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-color);
}
.login-form-wrapper .form-title {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.login-form-wrapper .form-intro {
    text-align: center;
    margin-bottom: 30px;
    color: var(--grey-color);
}

/* कंट्री कोड और मोबाइल नंबर को एक लाइन में रखने के लिए */
.phone-input-group {
    display: flex;
    gap: 5px; /* ड्रॉपडाउन और इनपुट के बीच थोड़ा गैप */
}

.phone-input-group select {
    flex-basis: 120px; /* ड्रॉपडाउन की चौड़ाई */
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: #f9f9f9;
}

.phone-input-group input[type="tel"] {
    flex-grow: 1; /* बची हुई पूरी जगह ले लेगा */
}




























/* 16. स्थायी रूप से चुने गए/डिसेबल कार्ड के लिए स्टाइल */

.profile-card-label input[type="checkbox"]:disabled + .profile-card-content {
    opacity: 0.8; /* कार्ड थोड़ा फीका दिखेगा */
    border-color: var(--success-color); /* हरी बॉर्डर यह दिखाएगी कि यह पसंद कन्फर्म है */
    cursor: not-allowed; /* कर्सर बदलकर 'not-allowed' हो जाएगा */
    position: relative;
}

.profile-card-label input[type="checkbox"]:disabled + .profile-card-content::before {
    /* यह एक पारदर्शी हरी परत बनाएगा */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--success-color);
    opacity: 0.1;
    border-radius: 8px;
}

.profile-card-label input[type="checkbox"]:disabled + .profile-card-content::after {
    /* यह एक 'लॉक' का आइकन दिखाएगा */
    content: '\f023'; /* Font Awesome LOCK icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--white-color);
    background-color: var(--success-color);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    border: 2px solid white;
}





/* 16. स्थायी रूप से चुने गए/डिसेबल कार्ड के लिए फाइनल स्टाइल */

.profile-card-label.is-liked .profile-card-content {
    /* is-liked क्लास अब सीधे PHP से जुड़ रही है */
    border-color: var(--success-color);
    box-shadow: none; /* होवर इफ़ेक्ट हटाने के लिए */
}

/* डिसेबल चेकबॉक्स वाले कार्ड के लिए स्टाइल */
.profile-card-label input[type="checkbox"]:disabled + .profile-card-content {
    opacity: 0.9; /* कार्ड थोड़ा धुंधला दिखेगा */
    cursor: not-allowed;
    position: relative; /* बैज की पोजिशनिंग के लिए */
        text-align: center;
}

/* 'पसंद भेजा जा चुका है' बैज का स्टाइल */
.already-liked-badge {
    position: absolute;
    /* बीच में लाने के लिए */
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%); 
    
    background-color: rgba(25, 135, 84, 0.9); /* गहरा हरा बैकग्राउंड */
    color: var(--white-color);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    font-family: var(--font-heading);
    z-index: 2;
    pointer-events: none;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.5);
}





























/* 20. कस्टम चेकबॉक्स के लिए स्टाइल (जोड़ना भूल गया था) */

.checkbox-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: block;
    height: 25px;
    width: 25px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 3; /* ताकि यह बैज के ऊपर रहे */
}

/* असली, छिपे हुए चेकबॉक्स */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}



/* जब माउस ऊपर ले जाएं तो बॉक्स का रंग बदलना */
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* जब चेकबॉक्स टिक हो, तो बैकग्राउंड का रंग बदलना */
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* टिक का निशान बनाना (जो शुरू में छिपा होता है) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* जब चेकबॉक्स टिक हो, तो टिक का निशान दिखाना */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}



/* जब चेकबॉक्स डिसेबल हो */
.checkbox-container input:disabled ~ .checkmark {
    background-color: var(--success-color);
    border-color: var(--success-color);
    opacity: 0.7;
    cursor: not-allowed;
}

/* फोटो को क्लिक करने योग्य दिखाने के लिए */
.photo-clickable-label {
    cursor: pointer;
}












/* 17. यूजर डैशबोर्ड प्रोफाइल डिटेल पॉपअप (Modal) स्टाइल */
.profile-detail-modal-content { padding: 5px; }
.profile-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--light-color);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.profile-detail-header img {
    max-width: 130px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}
.profile-detail-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0 0 5px 0;
}
.profile-detail-header p { margin: 0; color: var(--grey-color); }

.profile-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.profile-detail-grid h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.1rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.profile-detail-grid p { margin: 0px 0;
  font-size: .9rem;
  line-height: 1.1;
  color: #d90000;
  border-bottom: 1px solid black; }
.profile-detail-grid p strong { color: var(--grey-color); min-width: 120px; display: inline-block; }
.full-span-section { grid-column: 1 / -1; }

/* प्रोफाइल कार्ड को क्लिक करने योग्य दिखाने के लिए */
.profile-card-content-link {
    display: block;
    cursor: pointer;
}

























/* 19. प्रोफाइल कार्ड के अंदर 'प्रोफाइल देखें' बटन के लिए स्टाइल */
.profile-card-info .view-profile-btn {
    display: block;
  margin-top: 5px;
  text-align: center;
  font-size: 0.85rem;
  padding: 8px 12px;
}








/* 18. डैशबोर्ड वेलकम मैसेज के लिए नया स्टाइल */
.dashboard-header .welcome-user-id {
    margin-top: -8px; /* हेडिंग के करीब लाने के लिए */
    font-size: 0.95rem;
    color: var(--grey-color);
    font-weight: 500;
}






























/* 22. कन्फर्मेशन पॉपअप (Modal) के लिए स्टाइल */
.modal-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b70505;
    text-align: left;
    font-weight: 600;
}
.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.modal-actions .btn {
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 5px;
}
.btn-secondary {
    background-color: var(--grey-color);
}
.btn-secondary:hover {
    background-color: #5a6268;
}






















/* वेबसाइट सेटिंग्स के लिए स्टाइल */
.event-details { text-align: center; margin: 30px 0; }
#countdown-timer { font-size: 2.5rem; font-weight: bold; color: var(--primary-color); letter-spacing: 5px; }
.event-info { margin-top: 15px; font-size: 1.2rem; color: var(--grey-color); }
.event-info i { margin-right: 8px; color: var(--primary-color); }
.footer-slider { overflow: hidden; width: 100%; max-width: 1200px; margin: 20px auto; position: relative; }
.footer-slides { display: flex; animation: slide 20s infinite linear; }
.footer-slides img { width: 20%; flex-shrink: 0; padding: 0 10px; }
@keyframes slide { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }














