* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;

}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 100%;
}

/* Vertical content block */
.content-block {
    flex: 1;
    padding: 20px;
    max-width: 572px;
    margin: 0 auto;
    width: 100%;
    background-color: white;
    min-height: calc(100vh - 140px);
}

/* Logo section */
.logo-section {
    text-align: left;
    margin-bottom: 35px;
    /*padding-top: 0;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    padding: 30px 20px;
    border-radius: 20px;
    /*margin-bottom: 35px;*/
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.logo-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    max-width: 32px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.site-title {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #00bcd4 0%, #2196f3 50%, #1976d2 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    letter-spacing: -0.5px;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.slogan {
    display: none;
}

.page-title {
    margin: 0;
    font-size: 20px;
    font-weight: 300;
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main page specific styles */
.content-block.main-page {
    padding-bottom: 100px;
}

.main-page .logo-section,
.main-page.slogan{
    text-align: center;
    display: block;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.logo {
    max-width: 48px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.slogan {
    display: block;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #6c757d;
    font-size: 16px;
    font-weight: 400;
}

.back-link:hover {
    color: #1976d2;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.stat-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 25px 15px 0 15px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00bcd4, #2196f3, #00bcd4);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
}

.stat-box h3 {
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.count {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0;
}

.period-comparison {
    font-size: 11px;
    padding-top: 21px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.achievement {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    min-height: 28px;
}

/* Rank Progress Styles */
.rank-progress-container {
    margin-top: 10px;
    margin-bottom: 5px;
}

.rank-progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rank-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00bcd4, #2196f3);
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
}

.rank-progress-text {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.rank-max-achieved {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
    margin: 10px 0;
    padding: 8px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 8px;
}

.achievements-link-container {
    text-align: center;
    margin-top: 15px;
}

.stat-box a {
    font-size: 11px;
    color: #dc3545;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 4px 8px;
    background: transparent;
}

.stat-box a:hover {
    background: rgba(220, 53, 69, 0.1);
    transform: scale(1.05);
    border-radius: 6px;
    color: #c82333;
}

/* Text Truncation */
.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

/* Add button */
.add-button-container {
    text-align: center;
    margin-top: 30px;
    width: 100%;
}

.add-button-full {
    width: 100%;
    padding: 45px;
    background: linear-gradient(135deg, #00bcd4 0%, #2196f3 50%, #1976d2 100%);
    background-size: 200% 100%;
    color: white;
    border: none;
    font-size: 26px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4), 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.add-button-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.add-button-full:hover::before {
    left: 100%;
}

.add-button-full:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.5), 0 6px 15px rgba(0, 0, 0, 0.15);
    background-position: 100% 0;
}

.add-button-full:active {
    transform: translateY(0) scale(0.99);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.last-orgasm-container {
    margin-top: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.last-orgasm-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #2196f3);
    opacity: 0.8;
}

/* Guest Info Block */
.guest-info-container {
    margin-top: 30px;
    background: linear-gradient(135deg, #FFE5B4 0%, #FFEFD5 100%);
    border-radius: 20px;
    padding: 25px;
    padding-top: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.guest-info-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #2196f3);
    opacity: 0.8;
}

.guest-info-container h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guest-info-content p {
    margin: 12px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.guest-notice {
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 15px;
    border-radius: 10px;
    border-left: 3px solid #ff9800;
    text-align: center;
}

.guest-cta {
    font-weight: 600;
    color: #2196f3;
}

/* Intensity 1-3: Soft warm tones (gentle) */
.last-orgasm-container.intensity-1 {
    background: linear-gradient(135deg, #FFE5B4 0%, #FFEFD5 100%);
}

.last-orgasm-container.intensity-2 {
    background: linear-gradient(135deg, #FFDAB9 0%, #FFE4C4 100%);
}

.last-orgasm-container.intensity-3 {
    background: linear-gradient(135deg, #FFCBA4 0%, #FFD7B5 100%);
}

/* Intensity 4-5: Peachy coral (building) */
.last-orgasm-container.intensity-4 {
    background: linear-gradient(135deg, #FFB6A3 0%, #FFC9B9 100%);
}

.last-orgasm-container.intensity-5 {
    background: linear-gradient(135deg, #FF9A8B 0%, #FFB4A8 100%);
}

/* Intensity 6-7: Rose pink (intense) */
.last-orgasm-container.intensity-6 {
    background: linear-gradient(135deg, #FF8BA7 0%, #FFA6BE 100%);
}

.last-orgasm-container.intensity-7 {
    background: linear-gradient(135deg, #FF6FA3 0%, #FF8BB8 100%);
}

/* Intensity 8-9: Purple magenta (very intense) */
.last-orgasm-container.intensity-8 {
    background: linear-gradient(135deg, #E879F9 0%, #F0ABFC 100%);
}

.last-orgasm-container.intensity-9 {
    background: linear-gradient(135deg, #C084FC 0%, #D8B4FE 100%);
}

/* Intensity 10: Golden glow (explosive) */
.last-orgasm-container.intensity-10 {
    background: linear-gradient(135deg, #FCD34D 0%, #FDE68A 100%);
    box-shadow: 0 8px 16px rgba(252, 211, 77, 0.3), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.last-orgasm-container h3 {
    text-align: center;
    margin-bottom: 18px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.last-orgasm-content {
    position: relative;
    text-align: center;
}

.last-orgasm-content .no-data {
    color: #6c757d;
    font-style: italic;
    margin: 0;
    font-size: 15px;
}

.last-orgasm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.last-orgasm-datetime {
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
}

.last-orgasm-intensity-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 14px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 140px;
    letter-spacing: 1px;
}

.last-orgasm-intensity {
    font-weight: 400;
    font-size: 18px;
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    margin-left: 5px;
}

.last-orgasm-details {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    margin-top: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.last-orgasm-comment {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.last-orgasm-detail {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 13px;
}

.last-orgasm-detail-label {
    color: #6c757d;
    font-weight: 500;
}

.last-orgasm-detail-value {
    color: #2c3e50;
    font-weight: 600;
}

.last-orgasm-favorite {
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(252, 211, 77, 0.5));
    animation: pulse-star 2s ease-in-out infinite;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes pulse-star {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

.success-message {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #2196f3;
    padding: 40px 20px;
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Bottom menu */
.bottom-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    border-top: 1px solid #e9ecef;
    padding: 35px 0;
    height: 80px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    cursor: pointer;
    padding: 4px 0;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
    min-width: 0;
}

.menu-item.active {
    color: #1976d2;
}

.menu-item:hover {
    background-color: #f8f9fa;
}

.material-icons {
    font-size: 40px !important;
    margin-bottom: 2px;
}

.label {
    font-size: 14px;
    font-weight: 500;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 30px;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.age-verification-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    margin: 5% auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
}

.age-verification-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.age-verification-message {
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.6;
}

.age-verification-message p {
    margin-bottom: 15px;
    font-size: 16px;
}

.age-verification-warning {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 83, 0.1));
    border: 1px solid #ff6b6b;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    color: #c0392b;
    font-weight: 600;
}

.age-verification-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-verification-button {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.age-verification-button.over-18 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.age-verification-button.under-18 {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.age-verification-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.age-verification-button.over-18:hover {
    background: linear-gradient(135deg, #3a9bff, #00d9e9);
}

.age-verification-button.under-18:hover {
    background: linear-gradient(135deg, #ff5252, #d74718);
}

.close,
.close-form {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover,
.close-form:hover {
    color: #000;
}

#dynamic-form-container {
    margin-top: 20px;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 800;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.form-category {
    margin-bottom: 25px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.category-title {
    margin: -25px -25px 25px -25px;
    padding: 18px 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 17px;
    font-weight: 700;
    border-radius: 16px 16px 0 0;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-field {
    margin-bottom: 20px;
}

.form-label {
    display: inline-block;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
    margin-bottom: 4px;
}

.form-hint {
    display: inline-block;
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    line-height: 1.4;
    margin-left: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
    box-sizing: border-box;
    color: #2c3e50;
    font-weight: 500;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4facfe;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.1);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: #95a5a6;
}

.form-range {
    width: 100%;
    margin: 15px 0;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #FF7F00, #FF5E00, #FF3D00, #FF0000, #E0002B, #C2185B, #9C27B0, #8E24AA, #D4AF37, #FFD700);
    outline: none;
    -webkit-appearance: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 2px solid #fff;
    transition: transform 0.1s ease;
}

.form-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.form-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s ease;
}

.range-value {
    text-align: center;
    font-weight: 900;
    margin-top: 8px;
    font-size: 24px;
}

.form-radio-group,
.form-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.form-radio-item,
.form-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 12px;
    background-color: #f8f9fa;
    border: 2px solid transparent;
    margin-bottom: 0;
    transition: all 0.2s ease;
    cursor: pointer;
}

.form-radio-item:hover,
.form-checkbox-item:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.form-radio-item.selected,
.form-checkbox-item.selected {
    background-color: #e3f2fd;
    border-color: #4facfe;
    box-shadow: 0 4px 10px rgba(79, 172, 254, 0.2);
}

.form-radio,
.form-checkbox {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

.form-radio-item label,
.form-checkbox-item label {
    cursor: pointer;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
    flex: 1;
    padding: 0;
    user-select: none;
}

/* iOS-style toggle switches */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-right: 10px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.toggle-switch input:checked+.toggle-slider {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
}

.toggle-container {
    background: white;
    padding: 15px 20px;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.toggle-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.toggle-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(26px);
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.toggle-label {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 500;
    flex: 1;
    text-align: left;
}

.toggle-switch {
    order: 2;
    margin-left: 15px;
}


.form-button-group {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding: 20px 0 10px 0;
    border-top: 1px solid #ecf0f1;
}

.form-submit,
.form-cancel {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.form-submit:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
}

.form-cancel {
    background-color: #ecf0f1;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
}

.form-cancel:hover {
    background-color: #d5dbdb;
    color: #2c3e50;
    transform: translateY(-1px);
}

.achievement-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.achievement-item:last-child {
    border-bottom: none;
}

.achievement-item.locked {
    opacity: 0.6;
}

.achievement-name {
    font-weight: 600;
    color: #333;
}

.achievement-description {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.achievement-count {
    background-color: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.achievement-count.locked {
    background-color: #ccc;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .content-block {
        padding: 15px;
    }

    .stats-grid {
        gap: 10px;
    }

    .stat-box {
        padding: 15px 10px;
    }

    .stat-box h3 {
        font-size: 12px;
    }

    .count {
        font-size: 20px;
    }

    .achievement {
        font-size: 16px;
    }
}

@media (min-width: 572px) {
    .content-block {
        max-width: 572px;
        margin: 0 auto;
    }
}

/* Achievements page styles */
.content-block h1 {
    text-align: right;
    margin-bottom: 0;
    font-size: 35px;
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.current-achievement-section {
    margin-bottom: 30px;
}

.current-achievement-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.current-achievement {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.achievement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.achievement-name {
    font-size: 18px;
    font-weight: 700;
    color: #007bff;
}

.achievement-progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #007bff;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.all-achievements-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.achievements-grid {
    display: grid;
    gap: 12px;
}

.achievement-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.achievement-card.unlocked {
    background-color: #e3f2fd;
    border-color: #bbdefb;
}

.achievement-info {
    flex: 1;
}

.achievement-card .achievement-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.achievement-card.unlocked .achievement-name {
    color: #007bff;
}

.achievement-card .achievement-description {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.achievement-card .achievement-count {
    background-color: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.achievement-card.unlocked .achievement-count {
    background-color: #4caf50;
}

.back-button-container {
    text-align: center;
    margin-top: 30px;
}

.back-button {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.back-button:hover {
    background-color: #5a6268;
}

/* Log page styles */
.log-header {
    text-align: center;
    margin-bottom: 30px;
}

.log-header h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 35px;
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.log-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #6c757d;
}

.log-entries {
    margin-bottom: 30px;
}

.log-entry {
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Intensity colors for log entries - matching Last Orgasm palette */
.log-entry.intensity-1 {
    background-color: #FFE5B4;
}

.log-entry.intensity-2 {
    background-color: #FFDAB9;
}

.log-entry.intensity-3 {
    background-color: #FFCBA4;
}

.log-entry.intensity-4 {
    background-color: #FFB6A3;
}

.log-entry.intensity-5 {
    background-color: #FF9A8B;
}

.log-entry.intensity-6 {
    background-color: #FF8BA7;
}

.log-entry.intensity-7 {
    background-color: #FF6FA3;
}

.log-entry.intensity-8 {
    background-color: #E879F9;
}

.log-entry.intensity-9 {
    background-color: #C084FC;
}

.log-entry.intensity-10 {
    background-color: #FCD34D;
}

.log-entry:hover {
    background-color: #e3f2fd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.log-entry-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.log-entry-datetime {
    display: flex;
    flex-direction: column;
}

.log-entry-date {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.log-entry-time {
    font-size: 14px;
    color: #6c757d;
}

.log-entry-intensity-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 13px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 140px;
    letter-spacing: 1px;
}

.log-entry-intensity {
    font-weight: 400;
    font-size: 16px;
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    margin-left: 5px;
}

.log-entry-favorite {
    font-size: 22px;
    filter: drop-shadow(0 2px 4px rgba(252, 211, 77, 0.5));
    transition: transform 0.2s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.log-entry:hover .log-entry-favorite {
    transform: translateX(-50%) rotate(15deg) scale(1.1);
}

.log-entry-comment {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px;
    font-style: italic;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.log-entry-details {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.detail-item {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.detail-item:hover {
    transform: translateY(-2px);
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.detail-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 13px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.detail-value {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.5;
    font-weight: 500;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.pagination-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(79, 172, 254, 0.3);
    font-size: 14px;
}

.pagination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 172, 254, 0.4);
}

.pagination-btn:disabled {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pagination-btn:disabled:hover {
    background: #e9ecef;
    transform: none;
    box-shadow: none;
}

.pagination-info {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.close-detail {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close-detail:hover {
    color: #000;
}

/* Statistics page styles */
.stats-header {
    text-align: center;
    margin-bottom: 30px;
}

.stats-header h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 35px;
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.tab-navigation {
    display: flex;
    background-color: #ffffff;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 5px;
    gap: 5px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    cursor: pointer;
    font-weight: 400;
    color: #6c757d;
    border-radius: 12px;
    transition: all 0.2s ease;
    border: none;
}

.tab:last-child {
    border-right: none;
}

.tab.active {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    box-shadow: 0 4px 10px rgba(79, 172, 254, 0.3);
}

.tab:hover:not(.active) {
    background-color: #f8f9fa;
    color: #2c3e50;
}

.date-range-selector {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: end;
}

.date-picker-container {
    flex: 1;
    min-width: 140px;
}

.date-range-selector label {
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    display: block;
    font-size: 14px;
}

.date-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background-color: #f8f9fa;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #2c3e50;
    font-weight: 500;
}

.date-input:focus {
    outline: none;
    border-color: #4facfe;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.1);
}

.apply-button {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0 25px;
    cursor: pointer;
    font-weight: 600;
    height: 45px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(79, 172, 254, 0.3);
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(79, 172, 254, 0.4);
}

.form-button-group {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.form-cancel {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    background-color: #f1f3f5;
    color: #495057;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 15px;
}

.form-cancel:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.form-submit {
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
    font-size: 15px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
}

.pagination-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.period-display {
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    flex: 1;
    font-size: 15px;
}

.chart-container {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    height: 300px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chart-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.chart-container h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.summary-table-container {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.summary-table-container h3 {
    margin-bottom: 25px;
    color: #2c3e50;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}

.summary-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.summary-table th {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    padding: 15px 10px;
    text-align: center;
    font-weight: 400;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
}

.summary-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #f1f3f5;
    font-size: 13px;
    color: #495057;
}

.summary-table tr:last-child td {
    border-bottom: none;
}

.summary-table tr:hover td {
    background-color: #f8f9fa;
}

.summary-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

/* Achievements Page Styles */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 80px;
}

.current-progress-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.total-count-display {
    text-align: center;
    margin-bottom: 20px;
}

.count-label {
    display: block;
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.count-value {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.next-rank-info {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.next-rank-text {
    font-size: 14px;
    color: #495057;
    margin-bottom: 10px;
    text-align: center;
}

.rank-progress-bar.large {
    height: 12px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.achievement-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.achievement-item.current {
    border-color: #2196f3;
    background: linear-gradient(to right, rgba(33, 150, 243, 0.05), white);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.15);
}

.achievement-item.locked {
    opacity: 0.7;
    background: #f8f9fa;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    background: #f1f3f5;
    flex-shrink: 0;
}

.achievement-item.current .achievement-icon {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
}

.achievement-item.unlocked .achievement-icon {
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.achievement-icon .material-icons {
    font-size: 24px;
    color: #adb5bd;
}

.achievement-icon .current-icon,
.achievement-icon .unlocked-icon {
    color: white;
}

.achievement-content {
    flex: 1;
    min-width: 0;
    /* Prevents flex item from overflowing */
}

.achievement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.achievement-name {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-badge {
    font-size: 10px;
    background: #2196f3;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.achievement-description {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 8px;
    line-height: 1.4;
}

.achievement-range {
    font-size: 11px;
    color: #adb5bd;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: 10px;
}

.achievement-progress-inline {
    margin-top: 10px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 6px;
}

.mini-progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.mini-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00bcd4, #2196f3);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* User Menu Bottom Configuration */
.user-menu-container {
    position: relative;
}

.user-dropdown {
    display: none;
    /* Toggled by JS */
    position: absolute;
    bottom: 100%;
    left: 28%;
    transform: translateX(-50%);
    margin-bottom: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
    border: 1px solid #f0f0f0;
}

/* Arrow pointing down */
.user-dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: auto;
    right: 20px;
    transform: none;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f7fafc;
    color: #3182ce;
}

.dropdown-item .material-icons {
    font-size: 20px !important;
    color: #a0aec0;
}

.dropdown-item:hover .material-icons {
    color: #3182ce;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.lang-btn {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: #e2e8f0;
    color: #475569;
}

.lang-btn.active {
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    color: white;
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.2);
}

/* JS adds style="display: block" on toggle, we ensure it looks good */
.user-menu-container.menu-open .material-icons {
    color: #1976d2;
}
