/* Styling Login/Signup (Auth) */
.auth-container { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: white; 
    z-index: 200001; 
    justify-content: center; 
    align-items: flex-start; 
    padding: 0; 
    box-sizing: border-box; 
    overflow-y: auto; 
} 

.auth-card { 
    background: white; 
    padding: 20px 20px 40px 20px; 
    border-radius: 0; 
    width: 100%; 
    max-width: 450px; 
    box-shadow: none; 
    text-align: left; 
    min-height: 100vh; 
    margin: 0 auto; 
} 

.auth-logo-section { 
    text-align: center; 
    padding: 30px 0 10px 0; 
} 

.auth-logo { 
    width: 80px; 
    height: 80px; 
    object-fit: contain; 
    border-radius: 50%; 
    border: 3px solid #007bff; 
    margin-bottom: 10px; 
} 

.auth-card h2 { 
    font-size: 24px; 
    margin-bottom: 30px; 
    color: #333; 
    text-align: center; 
    font-weight: 700; 
} 

.auth-input-group { 
    margin-bottom: 20px; 
} 

.auth-input-group label { 
    display: block; 
    font-size: 14px; 
    color: #666; 
    margin-bottom: 5px; 
    font-weight: 500; 
} 

.auth-card input[type="text"], .auth-card input[type="password"] { 
    width: 100%; 
    padding: 12px; 
    margin-bottom: 0; 
    border: 1px solid #ccc; 
    border-radius: 6px; 
    box-sizing: border-box; 
    font-size: 16px; 
} 

.auth-card button.btn-primary { 
    width: 100%; 
    padding: 12px; 
    background-color: #007bff; 
    color: white; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 18px; 
    font-weight: 600; 
    margin-top: 20px; 
    transition: background-color 0.3s; 
} 

.auth-card button.btn-primary:hover { 
    background-color: #0056b3; 
} 

.auth-card .link-switch { 
    margin-top: 20px; 
    font-size: 14px; 
    text-align: center; 
} 

.auth-card .link-switch a { 
    color: #007bff; 
    text-decoration: none; 
    font-weight: 600; 
} 

.auth-status { 
    margin-top: 15px; 
    padding: 10px; 
    border-radius: 5px; 
    font-size: 14px; 
    text-align: center; 
} 

.auth-card button.btn-secondary { 
    width: 100%; 
    padding: 12px; 
    background-color: white; 
    color: #007bff; 
    border: 1px solid #007bff; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 16px; 
    font-weight: 600; 
    margin-top: 10px; 
    transition: background-color 0.3s; 
} 

.auth-card button.btn-secondary:hover { 
    background-color: #e6f7ff; 
} 

/* Styling Profil */
#profil-container { 
    background-color: #f0f2f5; 
    z-index: 200002; 
    padding: 0; 
    box-sizing: border-box; 
    overflow-y: auto; 
} 

.profil-card { 
    background: none; 
    padding: 0; 
    border-radius: 0; 
    width: 100%; 
    max-width: 450px; 
    margin: 0 auto; 
    box-shadow: none; 
    text-align: left; 
    min-height: 100vh; 
} 

.profil-card h2 { 
    display: none; 
} 

.profil-header-nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px; 
    background-color: white; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 10; 
} 

.profil-header-nav h3 { 
    margin: 0; 
    font-size: 18px; 
    font-weight: 500; 
} 

.profil-header-nav i { 
    font-size: 24px; 
    color: #333; 
    cursor: pointer; 
} 

.driver-info { 
    display: flex; 
    align-items: center; 
    padding: 15px; 
    background-color: white; 
    margin-bottom: 10px; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 
} 

.driver-foto { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin-right: 15px; 
    border: 3px solid #007bff; 
} 

.driver-text h4 { 
    margin: 0 0 5px 0; 
    font-size: 18px; 
    font-weight: 600; 
    color: #333; 
} 

.driver-details { 
    font-size: 12px; 
    color: #666; 
} 

.safety-report { 
    background-color: white; 
    padding: 15px; 
    margin-bottom: 10px; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 
    cursor: pointer; 
} 

.safety-report-left { 
    display: flex; 
    align-items: center; 
} 

.safety-icon { 
    width: 30px; 
    height: 30px; 
    border-radius: 4px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    color: #007bff; 
    margin-right: 10px; 
} 

.safety-text { 
    font-size: 14px; 
    color: #333; 
} 

.safety-text span { 
    display: block; 
    font-size: 12px; 
    color: #666; 
} 

.rating-section { 
    background-color: white; 
    padding: 15px; 
    margin-bottom: 10px; 
    display: flex; 
    justify-content: space-between; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 
} 

.rating-main { 
    text-align: center; 
    margin-right: 20px; 
} 

.rating-score { 
    font-size: 32px; 
    font-weight: 700; 
    color: #333; 
} 

.rating-label { 
    font-size: 12px; 
    color: #666; 
} 

.rating-breakdown { 
    flex-grow: 1; 
    font-size: 12px; 
    color: #666; 
} 

.rating-bar-row { 
    display: flex; 
    align-items: center; 
    margin-bottom: 2px; 
} 

.rating-bar-row span:first-child { 
    width: 10px; 
    text-align: right; 
    margin-right: 5px; 
} 

.rating-bar { 
    flex-grow: 1; 
    height: 6px; 
    background-color: #eee; 
    border-radius: 3px; 
    margin-right: 10px; 
} 

.rating-fill { 
    height: 100%; 
    background-color: #ffc107; 
    border-radius: 3px; 
} 

.profil-tabs { 
    display: flex; 
    border-bottom: 2px solid #eee; 
    background-color: white; 
} 

.profil-tab-item { 
    flex: 1; 
    text-align: center; 
    padding: 15px 0; 
    font-weight: 500; 
    color: #666; 
    cursor: pointer; 
    border-bottom: 2px solid transparent; 
} 

.profil-tab-item.active { 
    color: #007bff; 
    border-bottom: 2px solid #007bff; 
} 

.tab-content-section { 
    padding: 15px; 
    background-color: white; 
    margin-top: 1px; 
    margin-bottom: 70px; 
} 

.badge-section h4 { 
    margin-top: 0; 
    font-size: 14px; 
    color: #333; 
    font-weight: 600; 
} 

.badge-card { 
    display: flex; 
    padding: 15px; 
    border-radius: 8px; 
    background-color: #f7f7f7; 
    align-items: center; 
} 

.badge-image { 
    width: 60px; 
    height: 60px; 
    object-fit: contain; 
    margin-right: 15px; 
} 

.badge-text strong { 
    font-size: 14px; 
    color: #333; 
} 

.badge-text span { 
    display: block; 
    font-size: 12px; 
    color: #007bff; 
    margin-top: 5px; 
    cursor: pointer; 
} 

.passenger-comments { 
    padding: 15px; 
    background-color: white; 
    margin-top: 10px; 
} 

.passenger-comments h4 { 
    margin: 0 0 15px 0; 
    font-size: 14px; 
    color: #333; 
    font-weight: 600; 
} 

.magnifying-glass { 
    display: block; 
    margin: 20px auto; 
    width: 80px; 
    height: 80px; 
} 

/* Styling Edit Profil */
#editprofil-container { 
    background-color: #f0f2f5; 
    align-items: flex-start; 
    padding: 0; 
    overflow-y: auto; 
} 

#editprofil-container .auth-card { 
    background: #f0f2f5; 
    padding: 0; 
    border-radius: 0; 
    box-shadow: none; 
    max-width: 450px; 
    margin: 0 auto; 
    width: 100%; 
    min-height: 100vh; 
} 

#editprofil-container textarea { 
    width: 100%; 
    padding: 15px; 
    margin-bottom: 15px; 
    border: 2px solid #ccc; 
    border-radius: 8px; 
    box-sizing: border-box; 
    font-size: 24px; 
    resize: vertical; 
} 

.edit-header-nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px; 
    background-color: white; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 10; 
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); 
} 

.edit-header-nav h3 { 
    margin: 0; 
    font-size: 18px; 
    font-weight: 600; 
} 

.edit-header-nav .fas { 
    font-size: 24px; 
    color: #333; 
    cursor: pointer; 
} 

.edit-profile-photo-section { 
    padding: 20px; 
    background-color: white; 
    text-align: center; 
    margin-bottom: 10px; 
} 

.edit-profile-photo { 
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin-bottom: 10px; 
    border: 4px solid #007bff; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    cursor: pointer; 
} 

.change-photo-text { 
    color: #007bff; 
    font-weight: 500; 
    font-size: 14px; 
    cursor: pointer; 
} 

.edit-form-section { 
    background-color: white; 
    padding: 15px; 
    margin-bottom: 10px; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 
} 

.edit-form-section h4 { 
    margin-top: 0; 
    margin-bottom: 10px; 
    font-size: 16px; 
    color: #333; 
    font-weight: 600; 
} 

.form-group { 
    margin-bottom: 15px; 
} 

.form-group label { 
    display: block; 
    font-size: 12px; 
    color: #666; 
    margin-bottom: 5px; 
    font-weight: 500; 
} 

.edit-form-section input[type="text"], .edit-form-section input[type="password"], .edit-form-section textarea { 
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 6px; 
    box-sizing: border-box; 
    font-size: 16px; 
    color: #333; 
    -webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none; 
} 

.edit-form-section textarea { 
    resize: vertical; 
    min-height: 80px; 
} 

#editProfilForm button[type="submit"] { 
    width: 100%; 
    padding: 12px; 
    background-color: #007bff; 
    color: white; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 18px; 
    font-weight: 600; 
    margin-top: 5px; 
    margin-bottom: 15px; 
    transition: background-color 0.3s; 
} 

#editProfilForm button[type="submit"]:hover { 
    background-color: #0056b3; 
} 

.edit-footer-buttons { 
    padding: 15px; 
    background-color: white; 
    text-align: center; 
    position: sticky; 
    bottom: 0; 
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05); 
} 

.edit-footer-buttons button { 
    width: 100%; 
    padding: 12px; 
    border-radius: 8px; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: background-color 0.3s; 
    border: 1px solid #ccc; 
} 

.edit-footer-buttons .btn-batal { 
    background-color: white; 
    color: #f44336; 
    margin-bottom: 10px; 
} 

.edit-footer-buttons .btn-logout { 
    background-color: #f44336; 
    color: white; 
    border: none; 
} 

.edit-footer-buttons .btn-batal:hover { 
    background-color: #f0f0f0; 
} 

/* Styling Payment */
#payment-container { 
    background-color: #f0f2f5; 
    z-index: 200003; 
} 

.payment-card-modified { 
    background: white; 
    padding: 0; 
    border-radius: 0; 
    width: 100%; 
    max-width: 450px; 
    margin: 0 auto; 
    box-shadow: none; 
    text-align: left; 
    min-height: 100vh; 
} 

.payment-header { 
    display: flex; 
    align-items: center; 
    padding: 15px; 
    background-color: white; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 10; 
} 

.payment-header h3 { 
    margin: 0; 
    font-size: 18px; 
    font-weight: 600; 
    flex-grow: 1; 
    text-align: center; 
    padding-right: 24px; 
} 

.payment-header i { 
    font-size: 24px; 
    color: #333; 
    cursor: pointer; 
} 

.product-image-slider, .slider-nav, .slider-dots { 
    display: none; 
} 

.product-image-container { 
    width: 100%; 
    height: 250px; 
    overflow: hidden; 
    position: relative; 
} 

.product-image-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
} 

.product-details-section { 
    padding: 15px; 
    background-color: white; 
    border-bottom: 8px solid #f0f2f5; 
} 

.product-details-section h4 { 
    margin-top: 0; 
    margin-bottom: 5px; 
    font-size: 20px; 
    color: #333; 
    font-weight: 700; 
} 

.product-price-display { 
    font-size: 16px; 
    color: #f44336; 
    font-weight: 600; 
    margin-bottom: 15px; 
} 

.product-description-text { 
    font-size: 14px; 
    color: #666; 
    margin-bottom: 10px; 
} 

.product-keterangan-manual { 
    font-size: 14px; 
    color: #007bff; 
    font-style: italic; 
    margin-top: 10px; 
} 

.payment-info-section { 
    padding: 15px; 
    background-color: white; 
} 

.info-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 8px 0; 
    border-bottom: 1px solid #eee; 
    font-size: 14px; 
} 

.info-row:last-child { 
    border-bottom: none; 
} 

.info-label { 
    color: #666; 
} 

.info-value { 
    color: #333; 
    font-weight: 500; 
    text-align: right; 
} 

.info-value.address { 
    max-width: 60%; 
} 

.Saldo-row { 
    font-size: 16px; 
    font-weight: 700; 
    color: #007bff; 
} 

.total-bayar-row { 
    font-weight: 700; 
    font-size: 18px; 
    margin-top: 10px; 
    border-top: 1px solid #ddd; 
} 

.total-bayar-row .info-value { 
    color: #f44336; 
} 

.payment-action-section { 
    padding: 15px; 
    background-color: white; 
    position: sticky; 
    bottom: 0; 
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); 
    z-index: 10; 
} 

.btn-bayar-Saldo { 
    width: 100%; 
    padding: 15px; 
    background-color: #007bff; 
    color: white; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 18px; 
    font-weight: 600; 
    transition: background-color 0.3s; 
} 

.btn-bayar-Saldo:hover { 
    background-color: #0056b3; 
} 

/* Styling QRIS */
#qris-container { 
    background-color: #f0f2f5; 
    z-index: 200006; 
    justify-content: center; 
    align-items: flex-start; 
    padding: 0; 
    box-sizing: border-box; 
    overflow-y: auto; 
} 

.qris-card-modified { 
    background: white; 
    padding: 0; 
    border-radius: 0; 
    width: 100%; 
    max-width: 450px; 
    margin: 0 auto; 
    box-shadow: none; 
    text-align: left; 
    min-height: 100vh; 
} 

.qris-header { 
    display: flex; 
    align-items: center; 
    padding: 15px; 
    background-color: white; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 10; 
} 

.qris-header h3 { 
    margin: 0; 
    font-size: 18px; 
    font-weight: 600; 
    flex-grow: 1; 
    text-align: center; 
    padding-right: 24px; 
} 

.qris-header i { 
    font-size: 24px; 
    color: #333; 
    cursor: pointer; 
} 

.qris-content-section { 
    padding: 15px; 
    background-color: white; 
    padding-top: 0; 
} 

.qris-logo-section { 
    padding: 20px 20px 10px 20px; 
    text-align: center; 
    margin-bottom: 15px; 
    background-color: #fff; 
} 

.qris-logo { 
    width: 80px; 
    height: 80px; 
    object-fit: contain; 
    border-radius: 50%; 
    margin-bottom: 10px; 
    border: 3px solid #007bff; 
} 

.qris-title { 
    font-size: 22px; 
    font-weight: 700; 
    color: #333; 
    margin-bottom: 5px; 
} 

.qris-subtitle { 
    font-size: 14px; 
    color: #666; 
    font-style: italic; 
} 

.qris-code-box { 
    background-color: white; 
    padding: 20px; 
    border-radius: 10px; 
    text-align: center; 
    margin-bottom: 15px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); 
    border: 1px solid #eee; 
} 

.qris-code-image { 
    width: 180px; 
    height: 180px; 
    object-fit: contain; 
    border: 1px solid #eee; 
    border-radius: 8px; 
    margin-bottom: 15px; 
} 

.qris-info p { 
    margin: 5px 0; 
    font-size: 14px; 
    color: #555; 
    text-align: left; 
} 

.qris-code-box .qris-info p { 
    text-align: center; 
} 

.qris-instruction-box { 
    background-color: white; 
    padding: 20px; 
    border-radius: 10px; 
    margin-bottom: 15px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); 
    border: 1px solid #eee; 
} 

.qris-instruction-box h4 { 
    margin-top: 0; 
    font-size: 16px; 
    color: #007bff; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 5px; 
    margin-bottom: 10px; 
    font-weight: 600; 
} 

.qris-instruction-box ul { 
    padding-left: 20px; 
    margin: 0; 
    font-size: 14px; 
    color: #333; 
} 

.qris-instruction-box li { 
    margin-bottom: 8px; 
    line-height: 1.4; 
} 

.qris-warning { 
    background-color: #fff3cd; 
    color: #856404; 
    padding: 10px; 
    border-radius: 8px; 
    font-size: 14px; 
    display: flex; 
    align-items: center; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 
    margin-top: 15px; 
} 

.qris-warning i { 
    margin-right: 10px; 
    font-size: 18px; 
} 

.qris-promo-section { 
    background-color: #e6f7ff; 
    color: #007bff; 
    padding: 15px; 
    border-radius: 10px; 
    margin-top: 15px; 
    text-align: center; 
    font-size: 14px; 
    font-weight: 600; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); 
} 

/* Styling Video */
#video-container { 
    background-color: #f0f2f5; 
    z-index: 200004; 
} 

.video-card-modified { 
    background: white; 
    padding: 0; 
    border-radius: 0; 
    width: 100%; 
    max-width: 450px; 
    margin: 0 auto; 
    box-shadow: none; 
    text-align: left; 
    min-height: 100vh; 
} 

.video-header { 
    display: flex; 
    align-items: center; 
    padding: 15px; 
    background-color: white; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 10; 
} 

.video-header h3 { 
    margin: 0; 
    font-size: 18px; 
    font-weight: 600; 
    flex-grow: 1; 
    text-align: center; 
    padding-right: 24px; 
} 

.video-header i { 
    font-size: 24px; 
    color: #333; 
    cursor: pointer; 
} 

.video-content-section { 
    padding: 10px 15px; 
    background-color: #f0f2f5; 
    padding-bottom: 80px; 
} 

.video-item { 
    background-color: white; 
    border-radius: 10px; 
    overflow: hidden; 
    margin-bottom: 15px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
} 

.video-thumbnail { 
    width: 100%; 
    height: 200px; 
    background-color: #333; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: relative; 
} 

.video-thumbnail video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
} 

.video-details { 
    padding: 10px 15px; 
} 

.video-details h4 { 
    margin: 0 0 5px 0; 
    font-size: 16px; 
    font-weight: 600; 
} 

.video-details p { 
    margin: 0; 
    font-size: 12px; 
    color: #666; 
} 

/* Styling Download */
.download-header { 
    display: flex; 
    align-items: center; 
    padding: 15px; 
    background-color: white; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 10; 
    color: #333; 
    font-size: 18px; 
    font-weight: 600; 
} 

.download-header i { 
    font-size: 24px; 
    margin-right: 15px; 
    cursor: pointer; 
} 

.download-content { 
    padding: 15px; 
    max-width: 450px; 
    margin: 0 auto; 
} 

.app-info-top { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 20px; 
    padding-top: 10px; 
} 

.app-logo { 
    width: 80px; 
    height: 80px; 
    border-radius: 15px; 
    object-fit: cover; 
    margin-right: 15px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
} 

.app-text { 
    flex-grow: 1; 
} 

.app-title { 
    font-size: 24px; 
    font-weight: 700; 
    color: #333; 
    margin: 0 0 5px 0; 
} 

.app-version { 
    font-size: 16px; 
    color: #666; 
    margin-bottom: 5px; 
} 

.app-publisher { 
    font-size: 14px; 
    color: #007bff; 
} 

.app-stats { 
    display: flex; 
    justify-content: space-between; 
    text-align: center; 
    padding: 15px 0; 
    border-bottom: 1px solid #eee; 
} 

.stat-item { 
    flex: 1; 
    padding: 0 10px; 
    border-right: 1px solid #eee; 
} 

.stat-item:last-child { 
    border-right: none; 
} 

.stat-value { 
    font-size: 18px; 
    font-weight: 700; 
    color: #333; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 3px; 
} 

.stat-label { 
    font-size: 12px; 
    color: #999; 
} 

.stat-value i { 
    color: gold; 
    margin-right: 5px; 
} 

.download-description h4 { 
    font-size: 18px; 
    color: #333; 
    margin: 20px 0 10px 0; 
    font-weight: 600; 
} 

.download-description p { 
    font-size: 14px; 
    color: #666; 
    line-height: 1.6; 
} 

.download-footer-bar { 
    position: fixed; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    max-width: 450px; 
    width: 100%; 
    background-color: #007bff; 
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15); 
    padding: 10px 15px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    color: white; 
    font-weight: 600; 
} 

.download-footer-text { 
    font-size: 16px; 
} 

.download-footer-version { 
    font-size: 12px; 
    opacity: 0.8; 
    margin-top: 2px; 
} 

.download-footer-icon { 
    font-size: 24px; 
} 

/* Styling Leaderboard */
#leaderboard-container { 
    background-color: #f0f2f5; 
    z-index: 200006; 
} 

.leaderboard-card-modified { 
    background: white; 
    padding: 0; 
    border-radius: 0; 
    width: 100%; 
    max-width: 450px; 
    margin: 0 auto; 
    box-shadow: none; 
    text-align: left; 
    min-height: 100vh; 
    background-color: #f0f2f5; 
    padding-bottom: 70px; 
    min-height: 100%; 
    width: 100%; 
    box-sizing: border-box; 
} 

.leaderboard-header { 
    display: flex; 
    align-items: center; 
    padding: 15px; 
    border-bottom: 1px solid #eee; 
    background-color: #007bff; 
    color: white; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
} 

.leaderboard-header i { 
    font-size: 24px; 
    color: white; 
    cursor: pointer; 
    margin-right: 15px; 
} 

.leaderboard-header h3 { 
    margin: 0; 
    font-size: 18px; 
    font-weight: 600; 
    flex-grow: 1; 
    text-align: center; 
    padding-right: 24px; 
} 

.leaderboard-content-section { 
    padding: 15px; 
} 

.leaderboard-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 12px 15px; 
    margin-bottom: 8px; 
    background-color: #ffffff; 
    border-radius: 8px; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 
} 

.leaderboard-item:nth-child(1) { 
    border: 2px solid gold; 
    background-color: #fffde7; 
} 

.leaderboard-item:nth-child(2) { 
    border: 2px solid silver; 
    background-color: #f5f5f5; 
} 

.leaderboard-item:nth-child(3) { 
    border: 2px solid #cd7f32; 
    background-color: #fcf8e3; 
} 

.leaderboard-rank { 
    font-size: 18px; 
    font-weight: 700; 
    color: #007bff; 
    width: 30px; 
    text-align: left; 
    font-size: 18px; 
} 

.leaderboard-item:nth-child(1) .leaderboard-rank { 
    color: gold; 
    font-size: 20px; 
} 

.leaderboard-item:nth-child(2) .leaderboard-rank { 
    color: silver; 
    font-size: 19px; 
} 

.leaderboard-item:nth-child(3) .leaderboard-rank { 
    color: #cd7f32; 
    font-size: 18px; 
} 

.leaderboard-name { 
    flex-grow: 1; 
    margin-left: 15px; 
    font-size: 16px; 
    color: #333; 
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
} 

.leaderboard-score { 
    font-size: 16px; 
    font-weight: 600; 
    color: #28a745; 
} 

/* Styling Dokumen (Sisa) */
.dokumen-card-modified { 
    background-color: #fff; 
    padding-bottom: 70px; 
    min-height: 100%; 
    width: 100%; 
    box-sizing: border-box; 
} 

.dokumen-header { 
    display: flex; 
    align-items: center; 
    padding: 15px; 
    border-bottom: 1px solid #eee; 
    background-color: #007bff; 
    color: white; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
} 

.dokumen-header i { 
    font-size: 18px; 
    cursor: pointer; 
    margin-right: 15px; 
} 

.dokumen-header h3 { 
    margin: 0; 
    font-size: 18px; 
    font-weight: 600; 
} 

.dokumen-content-section { 
    padding: 15px; 
} 

.dokumen-item { 
    background-color: #f8f9fa; 
    border: 1px solid #dee2e6; 
    border-radius: 8px; 
    padding: 15px; 
    margin-bottom: 15px; 
} 

.dokumen-item h4 { 
    color: #007bff; 
    margin-top: 0; 
    margin-bottom: 10px; 
    font-size: 16px; 
    border-bottom: 1px solid #b8daff; 
    padding-bottom: 5px; 
} 

.dokumen-item p { 
    font-size: 14px; 
    line-height: 1.5; 
    color: #495057; 
    margin-bottom: 10px; 
}
