/* Clean Auth Page Styles */

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

.clean-auth-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    color: #1f2937;
}

/* Main Wrapper */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
}

/* Back to Home */
.back-home {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: #374151;
    background: rgba(255, 255, 255, 0.8);
}

/* Login Card */
.login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    border: 1px solid #e5e7eb;
}

/* Logo Section */
.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
}

.login-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Login Type Selector */
.login-type-selector {
    margin-bottom: 2rem;
}

.login-type-tabs {
    display: flex;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 0.25rem;
    position: relative;
}

.login-type-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    color: #6b7280;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.login-type-tab.active {
    color: #3b82f6;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.login-type-tab:hover:not(.active) {
    color: #374151;
}

.login-type-tab i {
    font-size: 1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
    z-index: 2;
}

.input-wrapper input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: white;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.2s ease;
    z-index: 2;
}

.password-toggle:hover {
    color: #6b7280;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.forgot-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: #1d4ed8;
}

/* Login Button */
.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    margin-bottom: 2rem;
}

.login-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Register Section */
.register-section {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.register-section p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.register-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Form Messages */
.form-messages {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    display: none;
}

.form-messages.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    display: block;
}

.form-messages.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    display: block;
}

/* Footer */
.auth-footer {
    margin-top: 2rem;
    text-align: center;
}

.auth-footer p {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* Admin Mode Styling */
.login-form.admin-mode .login-type-tab.active {
    color: #059669;
}

.login-form.admin-mode .login-btn {
    background: linear-gradient(135deg, #059669, #047857);
}

.login-form.admin-mode .login-btn:hover {
    background: linear-gradient(135deg, #047857, #065f46);
}

.login-form.admin-mode .register-btn {
    color: #059669;
    border-color: #059669;
}

.login-form.admin-mode .register-btn:hover {
    background: #059669;
}

.login-form.admin-mode .forgot-link {
    color: #059669;
}

.login-form.admin-mode .forgot-link:hover {
    color: #047857;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-wrapper {
        padding: 1rem 0.5rem;
    }
    
    .back-home {
        top: 1rem;
        left: 1rem;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
        margin: 0 0.5rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .login-logo img {
        width: 40px;
        height: 40px;
    }
    
    .login-logo h1 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 1.5rem 1rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .login-type-tab span {
        display: none;
    }
    
    .login-type-tab {
        padding: 0.75rem;
    }
}
/* Regis
ter Page Specific Styles */
.register-card {
    max-width: 480px;
}

.register-form .form-group {
    margin-bottom: 1.25rem;
}

.register-submit-btn {
    background: linear-gradient(135deg, #10b981, #059669);
}

.register-submit-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

.login-redirect-btn {
    color: #10b981;
    border-color: #10b981;
}

.login-redirect-btn:hover {
    background: #10b981;
    color: white;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.password-strength.weak {
    background: #fef2f2;
    color: #dc2626;
}

.password-strength.medium {
    background: #fef3c7;
    color: #d97706;
}

.password-strength.strong {
    background: #f0fdf4;
    color: #16a34a;
}

/* Terms and Conditions Links */
.checkbox-label a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Login Section (opposite of register section) */
.login-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

/* Responsive adjustments for register form */
@media (max-width: 768px) {
    .register-card {
        max-width: 100%;
    }
    
    .register-form .form-group {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .checkbox-label {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}/* Gener
ate Email Button */
.generate-email-btn {
    background: none;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    margin-top: 0.25rem;
    transition: all 0.2s ease;
}

.generate-email-btn:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #d1d5db;
}

.form-help {
    line-height: 1.4;
}

.form-help .generate-email-btn {
    display: inline-block;
    margin-left: 0.5rem;
}/
* =============================================================================
   FORGOT PASSWORD STYLES
   ============================================================================= */

.forgot-password-section {
    text-align: center;
    margin: 1rem 0;
}

.forgot-password-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #10B981;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.forgot-password-link:hover {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.forgot-password-link i {
    font-size: 0.8rem;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.progress-step span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
}

.progress-step.active span {
    color: #10B981;
}

/* Step Info */
.step-info {
    text-align: center;
    margin-bottom: 2rem;
}

.step-info i {
    font-size: 3rem;
    color: #10B981;
    margin-bottom: 1rem;
}

.step-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-info p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Password Requirements */
.password-requirements {
    margin: 1rem 0;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.password-requirements h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.password-requirements li i {
    color: #dc2626;
    font-size: 0.8rem;
}

.password-requirements li.valid i {
    color: #10B981;
}

.password-requirements li.valid {
    color: #059669;
}

/* Password Strength Indicator */
.password-strength {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: right;
}

.password-strength.weak {
    color: #dc2626;
}

.password-strength.medium {
    color: #f59e0b;
}

.password-strength.strong {
    color: #10B981;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.success-message p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Cooldown Timer */
.cooldown-timer {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    color: #3b82f6;
    font-size: 0.9rem;
}

.cooldown-timer i {
    margin-right: 0.5rem;
}

/* Link Buttons */
.link-btn {
    background: none;
    border: none;
    color: #10B981;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.link-btn:hover {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.link-btn i {
    margin-right: 0.25rem;
    font-size: 0.8rem;
}

.separator {
    color: #d1d5db;
    margin: 0 0.5rem;
}

/* Auth Steps */
.auth-step {
    display: none;
}

.auth-step.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-indicator {
        gap: 0.5rem;
        margin: 1rem 0;
        padding: 0.75rem;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .progress-step span {
        font-size: 0.7rem;
    }
    
    .step-info i {
        font-size: 2.5rem;
    }
    
    .step-info h3 {
        font-size: 1.25rem;
    }
    
    .success-message i {
        font-size: 3rem;
    }
    
    .success-message h3 {
        font-size: 1.5rem;
    }
}

/* A
uth Container for Forgot Password */
.auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.auth-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 100%;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.auth-header .logo-img {
    width: 48px;
    height: 48px;
}

.auth-header .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Auth Steps */
.auth-step {
    display: none;
}

.auth-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-info {
    text-align: center;
    margin-bottom: 2rem;
}

.step-info i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.step-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-info p {
    color: #6b7280;
    font-size: 0.95rem;
}

.step-info strong {
    color: #667eea;
}

/* Auth Form */
.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    font-size: 1rem;
}

.input-group input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.input-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #667eea;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-full {
    width: 100%;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Auth Links */
.auth-links {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.auth-links a,
.link-btn {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
    font-family: inherit;
}

.auth-links a:hover,
.link-btn:hover {
    color: #764ba2;
}

.separator {
    color: #d1d5db;
}

/* Cooldown Timer */
.cooldown-timer {
    text-align: center;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.cooldown-timer i {
    margin-right: 0.5rem;
}

/* Password Strength */
.password-strength {
    margin-top: 0.5rem;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    transition: all 0.3s ease;
}

.password-strength-bar.weak {
    width: 33%;
    background: #ef4444;
}

.password-strength-bar.medium {
    width: 66%;
    background: #f59e0b;
}

.password-strength-bar.strong {
    width: 100%;
    background: #10b981;
}

/* Password Requirements */
.password-requirements {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.password-requirements h4 {
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.75rem;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.password-requirements li i {
    font-size: 0.75rem;
}

.password-requirements li.valid {
    color: #10b981;
}

.password-requirements li.valid i {
    color: #10b981;
}

.password-requirements li.valid i::before {
    content: "\f00c";
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-message i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.success-message p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    width: 100%;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.progress-step:last-child::after {
    display: none;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.progress-step.completed .step-circle {
    background: #10b981;
}

.progress-step span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.progress-step.active span {
    color: white;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 640px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-header h1 {
        font-size: 1.5rem;
    }

    .progress-indicator {
        gap: 0.5rem;
    }

    .progress-step span {
        font-size: 0.65rem;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}
