/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C41E3A;
    --primary-dark: #8B1429;
    --primary-light: #E63946;
    --accent-color: #DC143C;
    --secondary-color: #50c878;
    --danger-color: #e74c3c;
    --bg-color: #F8F9FA;
    --bg-light: #FFFFFF;
    --card-bg: #FFFFFF;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --border-color: #E5E5E5;
    --shadow: 0 2px 12px rgba(196, 30, 58, 0.08);
    --shadow-lg: 0 8px 24px rgba(196, 30, 58, 0.12);
    --shadow-hover: 0 4px 20px rgba(196, 30, 58, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ========== Login Page Styles ========== */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.login-box {
    background: var(--card-bg);
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 420px;
    position: relative;
    backdrop-filter: blur(10px);
}

.logo {
    text-align: center;
    margin-bottom: 36px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
    transform: translateY(-1px);
}

.error-message {
    background-color: #FEE2E2;
    color: #991B1B;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border-left: 4px solid var(--danger-color);
    font-weight: 500;
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

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

.btn-login:disabled {
    background: #CCCCCC;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ========== Dashboard Styles ========== */
.dashboard-body {
    background: var(--bg-color);
}

.dashboard-container {
    max-width: 768px;
    margin: 0 auto;
    min-height: 100vh;
    background: white;
    position: relative;
    padding-bottom: 70px;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 16px 24px;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.15);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.header-logo:hover {
    transform: scale(1.05);
}

.dashboard-header h2 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* User Profile Dropdown */
.user-profile {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.profile-trigger:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.profile-avatar-small {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.profile-avatar-small i {
    font-size: 1rem;
    color: white;
}

.profile-username {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.dropdown-icon {
    color: white;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.profile-trigger.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.profile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.dropdown-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-avatar i {
    font-size: 3rem;
    color: white;
}

.dropdown-user-info {
    flex: 1;
    color: white;
}

.dropdown-username {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.dropdown-email {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
}

.dropdown-menu {
    list-style: none;
    padding: 8px;
    margin: 0;
}

.dropdown-menu li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-weight: 500;
}

.dropdown-menu li:hover {
    background: rgba(196, 30, 58, 0.08);
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-menu li i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.dropdown-footer {
    padding: 12px;
}

.btn-dropdown-logout {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-dropdown-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.4);
}

.btn-dropdown-logout i {
    font-size: 1rem;
}

.dashboard-content {
    padding: 20px;
}

.page-content {
    animation: fadeIn 0.3s ease-in;
}

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

.welcome-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 32px 28px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.2);
    position: relative;
    overflow: hidden;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.welcome-card h3 {
    margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.welcome-card p {
    font-size: 1.05rem;
    opacity: 0.95;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.card {
    background: var(--card-bg);
    padding: 28px 20px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.card i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.card:hover i {
    transform: scale(1.1);
}

.card h4 {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.page-section {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--border-color);
}

.page-section h3 {
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.4rem;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.page-section h3 i {
    margin-right: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-container,
.opm-container {
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
}

.profile-info {
    text-align: center;
}

.profile-avatar {
    margin-bottom: 28px;
    position: relative;
}

.profile-avatar i {
    font-size: 6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 24px;
    border-radius: 50%;
    background-color: rgba(196, 30, 58, 0.08);
    display: inline-block;
}

.profile-details {
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
}

.profile-details p {
    padding: 18px 20px;
    border-bottom: 2px solid var(--border-color);
    background: rgba(196, 30, 58, 0.02);
    margin-bottom: 12px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.profile-details p:hover {
    background: rgba(196, 30, 58, 0.05);
    transform: translateX(4px);
}

.profile-details p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.profile-details p:last-child {
    border-bottom: 2px solid var(--border-color);
}

/* ========== Bottom Navigation ========== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 768px;
    background: white;
    border-top: none;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 24px 24px 0 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    position: relative;
    border-radius: 12px;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 0 0 3px 3px;
    transition: transform 0.3s ease;
}

.nav-item.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-item i {
    font-size: 1.5rem;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}

.nav-item span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nav-item:hover {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.05);
}

.nav-item:hover i {
    transform: scale(1.1);
}

.nav-item.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Camera button in navbar */
.nav-camera {
    position: relative;
}

.camera-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
    transition: all 0.3s ease;
    border: 4px solid white;
}

.camera-btn:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 28px rgba(196, 30, 58, 0.5);
}

.camera-btn i {
    font-size: 1.9rem;
    color: white;
    margin: 0;
}

/* ========== Camera Page Styles ========== */
.camera-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 140px);
    background: #000;
    overflow: hidden;
}

.camera-view {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cameraVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timestamp {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-width: 250px;
    max-width: 90%;
    pointer-events: none;
    line-height: 1.5;
    white-space: pre-line;
}

.camera-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.btn-capture {
    width: 75px;
    height: 75px;
    background: white;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
    position: relative;
}

.btn-capture::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-capture:hover::before {
    opacity: 0.1;
}

.btn-capture:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(196, 30, 58, 0.5);
}

.btn-capture:active {
    transform: scale(0.95);
}

.btn-capture i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.btn-camera-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.btn-camera-control:hover {
    background: white;
    transform: scale(1.1);
}

.btn-camera-control i {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.photo-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

#capturedPhoto {
    max-width: 100%;
    max-height: calc(100% - 100px);
    object-fit: contain;
}

.preview-controls {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 16px;
}

.btn-preview {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-preview:hover {
    background: white;
    transform: translateY(-2px);
}

.btn-preview.btn-save {
    background: var(--secondary-color);
    color: white;
}

.btn-preview.btn-save:hover {
    background: #45b368;
}

/* Camera notification toast */
.camera-notification {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(80, 200, 120, 0.95);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 30;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.camera-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Camera permission guide */
.camera-permission-guide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 25;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.permission-content {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.permission-icon {
    font-size: 4rem;
    color: var(--danger-color);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.permission-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.permission-steps {
    text-align: left;
    margin-bottom: 24px;
}

.step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-text {
    flex: 1;
}

.step-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 4px 0;
}

.step-text code {
    background: var(--bg-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.btn-try-again {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-try-again:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-try-again i {
    font-size: 1.2rem;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .dashboard-header {
        padding: 10px 16px;
    }

    .header-left {
        gap: 8px;
    }

    .header-logo {
        height: 35px;
    }

    .dashboard-header h2 {
        font-size: 1.1rem;
    }

    /* Profile dropdown responsive */
    .profile-username {
        display: none;
    }

    .profile-trigger {
        padding: 8px 12px;
        gap: 8px;
    }

    .profile-dropdown {
        width: 260px;
    }

    .dropdown-header {
        padding: 16px;
    }

    .dropdown-username {
        font-size: 0.95rem;
    }

    .dropdown-email {
        font-size: 0.8rem;
    }

    .card {
        padding: 16px;
    }

    .card i {
        font-size: 2rem;
    }

    .nav-item i {
        font-size: 1.25rem;
    }

    .nav-item span {
        font-size: 0.7rem;
    }

    /* Camera permission guide responsive */
    .permission-content {
        padding: 24px 16px;
    }

    .permission-content h3 {
        font-size: 1.2rem;
    }

    .permission-icon {
        font-size: 3rem;
    }

    .step {
        gap: 12px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .step-text strong {
        font-size: 0.95rem;
    }

    .step-text p {
        font-size: 0.85rem;
    }

    .btn-try-again {
        padding: 12px 20px;
        font-size: 1rem;
    }
}
