/* ============================================
   ROOT VARIABLES & GLOBAL STYLES
   ============================================ */

:root {
    --color-primary: #00356b;
    --color-accent: #ff4237;
    --color-light: #f8f9fa;
    --color-success: #4caf50;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-light);
    display: flex;
    flex-direction: column;
}

/* ============================================
   LAYOUT STRUCTURE
   ============================================ */

.layout-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ============================================
   NAVBAR/HEADER
   ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--color-primary) 0%, #001a3d 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.navbar-brand span {
    background: var(--color-accent);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--color-primary);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: auto;
}

footer p {
    margin: 0;
    opacity: 0.9;
}

/* ============================================
   COMMON COMPONENTS
   ============================================ */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #001a3d 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Back Button */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.btn-back:hover {
    color: var(--color-accent);
}

/* Alerts */
.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: none;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.alert-error {
    background: rgba(255, 66, 55, 0.1);
    color: #c62828;
    border-left: 4px solid #ff4237;
}

/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* Main Container */
.container-projects {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Project Image */
.project-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #001a3d 100%);
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project Content */
.project-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.project-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    flex: 1;
}

/* Progress Bar */
.progress-section {
    margin-bottom: 1rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Project Footer */
.project-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.amount-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.amount-raised {
    color: var(--color-accent);
    font-weight: 600;
}

.amount-goal {
    color: #999;
}

/* Action Buttons */
.button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.btn-donate {
    background: linear-gradient(135deg, var(--color-accent) 0%, #cc3428 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-donate:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 66, 55, 0.3);
    color: white;
}

.btn-info {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-info:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.badge-active {
    background: rgba(0, 53, 107, 0.1);
    color: var(--color-primary);
}

.badge-completed {
    background: rgba(100, 200, 100, 0.1);
    color: #4caf50;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: #999;
}

.empty-state h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* ============================================
   PROJECT DETAIL PAGE STYLES
   ============================================ */

/* Main Container */
.container-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Project Header Image */
.project-header-image {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.project-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project Info Card */
.project-info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-box {
    background: linear-gradient(135deg, rgba(0, 53, 107, 0.05), rgba(255, 66, 55, 0.05));
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress Section */
.progress-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.progress-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.progress-bar-wrapper {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.progress-bar {
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Donation Info */
.donation-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.donation-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.donation-count {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 53, 107, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.donation-count-icon {
    font-size: 2rem;
}

.donation-count-text {
    flex: 1;
}

.count-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
}

.count-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

/* Action Button */
.btn-donate-large {
    width: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #cc3428 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn-donate-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 66, 55, 0.3);
    color: white;
}

/* ============================================
   DONATION FORM PAGE STYLES
   ============================================ */

/* Main Container */
.container-donation {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem 3rem 1rem;
}

/* Form Container */
.form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .form-container {
        grid-template-columns: 2fr 1fr;
    }
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--color-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 53, 107, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Amount Input */
.amount-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.amount-input-group .currency {
    position: absolute;
    left: 1rem;
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.1rem;
}

.amount-input-group input {
    padding-left: 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Project Selector Card */
.project-selector {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.project-selector-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.project-preview {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    display: none;
}

.project-preview.active {
    display: block;
}

.project-preview-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #001a3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.project-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Payment options (radio) - inline, full-width distribution */
.payment-options {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.payment-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    flex: 1; /* distribute equally */
}

.payment-options input[type="radio"] {
    margin: 0 0.25rem 0 0;
}

@media (max-width: 576px) {
    .payment-options {
        flex-direction: column;
    }
    .payment-options label {
        width: 100%;
    }
}

.project-preview-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.project-preview-details p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.project-preview-goal {
    background: rgba(0, 53, 107, 0.05);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.75rem;
}

.progress-mini {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-mini-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #cc3428 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 66, 55, 0.3);
    color: white;
}

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

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */

/* Main Container - Thanks */
.container-thanks {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem 3rem 1rem;
}

/* Success Card */
.success-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

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

/* Success Header */
.success-header {
    background: linear-gradient(135deg, var(--color-success) 0%, #45a049 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.success-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.8s ease-out;
}

@keyframes bounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.success-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Content */
.thanks-content {
    padding: 2.5rem 2rem;
}

.thanks-message {
    background: rgba(76, 175, 80, 0.05);
    border-left: 4px solid var(--color-success);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: #2e7d32;
}

.thanks-message h3 {
    margin-bottom: 0.5rem;
    color: #1b5e20;
}

/* Donation Details */
.details-section {
    margin-bottom: 2.5rem;
}

.details-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

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

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: var(--color-primary);
    font-weight: 600;
}

.detail-value.amount {
    color: var(--color-accent);
    font-size: 1.2rem;
}

/* Project Card - Thanks */
.project-card-thanks {
    background: linear-gradient(135deg, rgba(0, 53, 107, 0.05), rgba(255, 66, 55, 0.05));
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.project-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 576px) {
    .project-info {
        grid-template-columns: 1fr;
    }
}

.project-image-small {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #001a3d 100%);
}

.project-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-details-thanks h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.project-details-thanks p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Progress Bar - Thanks */
.progress-thanks {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar-thanks {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 5px;
}

.progress-label-thanks {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

/* CTA Buttons */
.cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .cta-buttons {
        grid-template-columns: 1fr;
    }
}

.btn-cta {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-donate-again {
    background: linear-gradient(135deg, var(--color-accent) 0%, #cc3428 100%);
    color: white;
}

.btn-donate-again:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 66, 55, 0.3);
    color: white;
}

.btn-browse-projects {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-browse-projects:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Share Section */
.share-section {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.share-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ddd;
}

.share-btn:hover {
    transform: scale(1.1);
    border-color: var(--color-primary);
}

/* Receipt Number */
.receipt-number {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px dashed #ccc;
}

.receipt-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.receipt-value {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0.25rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 576px) {
    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .project-header-image {
        height: 250px;
    }

    .project-title {
        font-size: 1.1rem;
    }

    .container-detail {
        padding: 1rem;
    }

    .form-container {
        grid-template-columns: 1fr;
    }

    .project-selector {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .container-thanks {
        margin: 1.5rem auto;
        padding: 0 1rem 1.5rem 1rem;
    }

    .success-header {
        padding: 2rem 1.5rem;
    }

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

    .success-title {
        font-size: 1.5rem;
    }

    .thanks-content {
        padding: 1.5rem 1rem;
    }
}
