/* --- General & Loading Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #1a1a1e;
    color: #eee;
    font-family: 'Delius', cursive;
    margin: 0;
    padding: 0;
}
.container { 
    width: 95%; 
    max-width: 1400px; 
    margin: 0 auto; 
}
#loadingOverlay {
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: #1a1a1e; 
    z-index: 1000; 
    color: #00b4d8;
    font-family: 'Orbitron', sans-serif; 
    font-size: 1.5em;
}
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.2); 
    border-left-color: #00b4d8;
    border-radius: 50%; 
    width: 50px; 
    height: 50px;
    animation: spin 1s linear infinite; 
    margin-bottom: 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Skeleton Loading Styles --- */
.skeleton {
    opacity: 0.7;
    animation: skeleton-loading 1s linear infinite alternate;
}
.skeleton-text {
    width: 100%;
    height: 0.7em;
    margin-bottom: 0.5em;
    border-radius: 0.25rem;
}
.skeleton-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
@keyframes skeleton-loading {
    0% { background-color: hsl(200, 20%, 25%); }
    100% { background-color: hsl(200, 20%, 35%); }
}

/* --- Season Announcement Banner --- */
.season-announcement {
    background: linear-gradient(145deg, #1a1a1e, #2a2a2e);
    border: 1px solid #00aaff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.2);
    color: #ccc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6;
}
.highlight-blue {
    color: #00dffc;
    font-weight: bold;
}

/* --- Header & Quick Add --- */
.main-header { 
    background: linear-gradient(to right, #111, #301a30, #111); 
    border-bottom: 3px solid #00aaff; 
    padding: 10px 0; 
    text-align: center; 
    margin-bottom: 20px; 
}
.main-header .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap;
}
#ft-welcome-message { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 1.8em; 
    color: #00dffc; 
    text-shadow: 0 0 6px #00aaff; 
    margin: 0; 
}
#ft-welcome-message span { color: #fff; }
.main-header nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.main-header nav a, .main-header nav button { 
    color: #aaa; 
    font-size: 1em; 
    margin: 5px 10px; 
    text-decoration: none; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 0; 
    font-family: 'Delius', cursive; 
}
.main-header nav a:hover, .main-header nav button:hover { color: #fff; text-decoration: underline; }
#medalsBtn {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 5px #fff;
}
.quick-add-panel { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.quick-add-panel label { font-size: 0.9em; }
.quick-add-panel select, .quick-add-panel input { background-color: #333; color: #eee; border: 1px solid #00aaff; border-radius: 4px; padding: 8px; font-family: 'Delius', cursive; }
.quick-add-panel input { width: 70px; }
.quick-add-panel button { background-color: #00aaff; color: white; border: none; padding: 8px 15px; border-radius: 4px; cursor: pointer; font-weight: bold; font-family: 'Orbitron', sans-serif; }

/* --- Grid Layout --- */
.main-grid { display: grid; grid-template-columns: 1fr 350px; gap: 20px; }
.left-column, .right-sidebar { display: flex; flex-direction: column; gap: 20px; }
.tracker-section { background: #222226; padding: 20px; border-radius: 8px; border: 1px solid #333; }
.tracker-section h3 { color: #00b4d8; text-align: center; font-family: 'Orbitron', sans-serif; }


/* --- Mission Board & Core Content --- */
.mission-board { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; }
.mission-card { background: #2a2a2e; padding: 15px; border-radius: 5px; border-left: 4px solid #00aaff; opacity: 0.8; transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; text-align: center; }
.mission-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0, 170, 255, 0.2); }
.mission-card.completed { border-left-color: #00ff88; opacity: 1; }
.mission-card h4 { margin: 0 0 5px 0; color: #eee; }
.mission-card p { margin: 0 0 10px 0; font-size: 0.9em; color: #aaa; }
.mission-reward { font-weight: bold; color: #FFD700; margin-bottom: 10px; }
.mission-progress-bar { background-color: #1a1a1e; border-radius: 5px; height: 8px; overflow: hidden; margin: 0 auto 5px; }
.mission-progress-bar .progress { background-color: #00aaff; height: 100%; width: 0%; transition: width 0.5s ease; }
.mission-card.completed .mission-progress-bar .progress { background-color: #00ff88; }
#showMoreMissionsBtn { background: none; border: 1px solid #00b4d8; color: #00b4d8; padding: 8px 15px; border-radius: 5px; cursor: pointer; margin-top: 15px; display: block; margin-left: auto; margin-right: auto; }
#moreMissionsContainer { display: none; margin-top: 15px; }

/* --- Chart & Drill Styling --- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 15px; }
.stat-card { background: #2a2a2e; padding: 15px; border-radius: 8px; }
.stat-card h4 { color: #00b4d8; font-family: 'Orbitron', sans-serif; text-align: center; }
.stat-card h4 span { color: #eee; }
.drill-stats { display: flex; justify-content: space-between; margin: 5px 0 10px; color: #ccc; }
.chart-wrapper {
    position: relative;
    height: 180px;
    background: linear-gradient(145deg, #1a1a1e, #2a2a2e);
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #444;
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(5px);
    display: none; justify-content: center; align-items: center; z-index: 2000;
    padding: 10px;
}
.modal-content {
    background: #1a1a1e; border: 1px solid #00b4d8; border-radius: 8px;
    width: 100%; max-width: 1400px; max-height: 90vh;
    display: flex; flex-direction: column; box-shadow: 0 5px 25px rgba(0, 180, 216, 0.2);
}
#logDayModal .modal-content {
    max-width: 850px;
}
.modal-header { 
    padding: 15px 20px; 
    border-bottom: 1px solid #444; 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
    gap: 20px;
}
.modal-title { font-family: 'Orbitron', sans-serif; font-size: 1.5em; color: #00dffc; margin: 0; }
.modal-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-tab-btn { background: #2a2a2e; color: #aaa; border: 1px solid #444; padding: 8px 15px; border-radius: 5px; cursor: pointer; font-family: 'Orbitron', sans-serif; }
.modal-tab-btn.active { background: #00b4d8; color: #1a1a1e; border-color: #00b4d8; }
.modal-close-btn { background: none; border: none; color: #fff; font-size: 1.5em; cursor: pointer; }
.modal-close-btn-alt {
    padding: 6px 12px;
    background-color: #444;
    width: auto;
    flex-shrink: 0;
    cursor: pointer;
    font-size: 0.9em;
}
/* ADDED: Red hover effect for the close button */
.modal-close-btn:hover {
    color: #dc3545; /* A standard red color */
}
.modal-body { padding: 20px; overflow-y: auto; }
.modal-tab-content { display: none; }
.modal-tab-content.active { display: block; }

/* --- Store/Armory/Medals --- */
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.store-item { background: #2a2a2e; border-radius: 5px; text-align: center; padding: 15px; display: flex; flex-direction: column; }
.store-item-image {
    width: 100%; height: 120px; background-color: #1a1a1e; border-radius: 5px;
    margin-bottom: 10px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; overflow: hidden;
}
.store-item-image img { 
    max-width: 100%; 
    max-height: 100%; 
    width: 100%;
    height: 100%;
    object-fit: cover; 
    position: relative; 
    z-index: 2; 
}
.store-item-info { flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.store-item h4 { margin: 0 0 5px 0; }
.store-item-cost { color: #FFD700; font-weight: bold; margin-bottom: 15px; }
.store-item-btn { width: 100%; padding: 10px; background-color: #00aaff; border: none; border-radius: 5px; color: #fff; font-weight: bold; cursor: pointer; margin-top: 10px; position: relative; text-decoration: none; }
.store-item-btn:disabled { background-color: #555; cursor: not-allowed; }
.store-item-btn.equip-btn { background-color: #00ff88; color: #1a1a1e;}
.store-item-title-display {
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    padding: 10px; text-align: center; border: 2px dashed #00b4d8; background: #111;
    height: 100%;
}
.store-item-title-display .title-label { font-size: 0.8em; color: #aaa; text-transform: uppercase; }
.store-item-title-display .title-text { margin: 5px 0 0 0; color: #00dffc; font-family: 'Orbitron', sans-serif; }
.medal-progress-text { font-size: 0.8em; color: #ccc; margin-top: 5px; }
.medal-badge-container {
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3px 3px 3px 8px;
    border-radius: 4px;
}
.medal-badge-name {
    font-size: 0.7em;
    color: #fff;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}
.medal-tier-badge {
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 4px;
    color: #1a1a1e;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}
.medal-locked-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    z-index: 3;
    border-radius: 5px;
}

/* --- Edit Profile & Admin --- */
.edit-subsection { margin-bottom: 20px; }
.edit-subsection label { display: block; margin-bottom: 5px; font-weight: bold; color: #ccc;}
.edit-subsection input { padding: 8px 12px; border-radius: 4px; border: 1px solid #666; background-color: #444; color: #eee; width: 100%; max-width: 250px; }
.edit-subsection button { padding: 8px 12px; cursor: pointer; border-radius: 4px; border: 1px solid #666; background-color: #555; color: #eee; margin-top: 10px; }
.unequip-item-btn { background-color: #a03028 !important; color: white !important; border-color: #8b2a22 !important; }
.error-text { font-size: 0.8em; color: #ff6666; min-height: 1em; }
.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 10px; margin-bottom: 15px; }
.profile-tile { cursor: pointer; border: 2px solid transparent; border-radius: 5px; max-width: 100%; height: auto; background-color: #444; transition: transform 0.2s ease, border-color 0.2s ease;}
.profile-tile:hover { transform: scale(1.05); }
.profile-tile.selected { border-color: #00aaff; box-shadow: 0 0 10px #00aaff; transform: scale(1.05);}
#adminPanel ul { list-style: none; padding: 0; margin-bottom: 25px; }
#adminPanel li { background-color: #333; padding: 15px; border-radius: 6px; margin-bottom: 10px; }
button.delete, button.decline { background-color: #a03028; color: white; border-color: #8b2a22; margin-left: 5px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 15px; align-items: center; margin-top: 20px; }
.form-grid label { font-weight: bold; color: #ccc; }
.form-grid input, .form-grid select { padding: 10px; border-radius: 4px; border: 1px solid #666; background-color: #444; color: #eee; width: 100%; }

/* --- Profile Card Styles --- */
.profile-card {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    grid-template-rows: auto auto;
    gap: 15px 20px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.5s ease-in-out;
}
.profile-card:hover {
    transform: scale(1.01);
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.3);
}
.avatar-container { 
    grid-area: 1 / 1 / 2 / 2;
    border: 3px solid #888;
    border-radius: 50%;
    overflow: hidden;
    width: 120px;
    height: 120px;
}
.avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-info {
    grid-area: 1 / 2 / 2 / 3;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 8px;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}
.profile-info h3 {
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}
.player-gamertag {
    color: #fff;
    font-weight: 700;
}
.player-title {
    font-size: 1.0em;
    font-weight: 400;
    vertical-align: middle;
    color: #00dffc;
    text-shadow: 0 0 8px #00aaff, 0 0 12px #00aaff;
}
.profile-name-divider {
    height: 2px;
    width: 80%;
    margin: 0 auto 15px;
    background: linear-gradient(to right, transparent, #00aaff, transparent);
}
.profile-medal-slot { 
    grid-area: 1 / 3 / 2 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Needed for text positioning */
}
.profile-medal-slot img {
    max-width: 100px;
    max-height: 100px;
    filter: drop-shadow(0 0 8px rgba(0, 170, 255, 0.7));
    animation: pulse-glow 2.5s infinite ease-in-out;
}
/* [UPDATED] Rank Level Text Styling */
.rank-level-text {
    position: absolute;
    bottom: 2px; /* Positioned at the bottom */
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7em; /* Made smaller */
    font-weight: bold;
    text-shadow: 1px 1px 3px #000; /* Added shadow for readability */
    pointer-events: none; /* Prevent text from interfering with clicks */
}
@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(0, 170, 255, 0.7)); }
    50% { filter: drop-shadow(0 0 15px rgba(0, 170, 255, 1)); }
}
/* [UPDATED] Loadout container styling */
.profile-loadout {
    grid-area: 2 / 1 / 3 / 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    /* Removed border and shadow from the main container */
}
/* [UPDATED] Individual loadout slot styling */
.loadout-slot {
    background-color: rgba(0,0,0,0.3);
    border: 1px solid #00aaff; /* Added blue border */
    box-shadow: 0 0 8px rgba(0, 170, 255, 0.5); /* Added glow */
    border-radius: 5px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.2s ease-in-out; /* Smooth transition for hover */
}
.loadout-slot:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.9); /* Intensify glow on hover */
}
.loadout-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0; 
}
.vitruvian-man-tile img { width: 100%; border-radius: 8px; opacity: 0.7; }
.category-ranks {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    text-align: center;
}
.category-rank-item small {
    font-size: 0.9em;
    color: #fff;
    font-weight: bold;
    display: block;
}
.category-rank-item p {
    margin: 2px 0 0 0;
    font-weight: bold;
}
.mission-feed {
    max-height: 300px;
    overflow-y: auto;
}
.feed-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #333;
    font-size: 0.9em;
}
.feed-item:last-child {
    border-bottom: none;
}
.feed-item img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* --- Mission Briefing Box Styles --- */
.mission-briefing-box {
    background: linear-gradient(160deg, #2a2a2e, #222226);
    border: 1px solid #00aaff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.2);
}
.mission-briefing-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00dffc;
    text-align: center;
    font-size: 1.6em;
    text-shadow: 0 0 8px rgba(0, 223, 252, 0.5);
    margin-bottom: 15px;
}
.mission-briefing-box .briefing-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 170, 255, 0), rgba(0, 170, 255, 0.75), rgba(0, 170, 255, 0));
    margin: 20px 0;
}
.mission-briefing-box p { color: #ccc; line-height: 1.7; font-size: 1.05em; }
.mission-briefing-box h4 {
    font-family: 'Orbitron', sans-serif;
    color: #eee;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}
.mission-briefing-box ul {
    list-style: none;
    padding-left: 0;
}
.mission-briefing-box li {
    background-color: rgba(0,0,0,0.2);
    padding: 8px 12px;
    margin-bottom: 5px;
    border-left: 3px solid #00aaff;
    color: #bbb;
}
.mission-briefing-box .highlight-gold { color: #FFD700; }
.mission-briefing-box .highlight-cyan { color: #00dffc; }
.mission-briefing-box .highlight-green { color: #00ff88; }

.mission-briefing-box .tempo-table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
    font-size: 0.9em;
}
.mission-briefing-box .tempo-table th, .mission-briefing-box .tempo-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #444;
}
.mission-briefing-box .tempo-table th {
    font-family: 'Orbitron', sans-serif;
    color: #00aaff;
}

/* --- Notification Toast --- */
.notification-toast {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    background-color: #00aaff; color: white; padding: 15px 25px;
    border-radius: 8px; z-index: 3000; opacity: 0; visibility: hidden;
    transition: opacity 0.5s, bottom 0.5s, visibility 0.5s;
    font-family: 'Orbitron', sans-serif;
}
.notification-toast.show { bottom: 40px; opacity: 1; visibility: visible; }

/* --- Leaderboard & Hover Effects --- */
.leaderboard-item { display: flex; align-items: center; padding: 8px; border-radius: 4px; transition: transform 0.2s, background-color 0.2s; }
.leaderboard-item:hover { transform: translateX(5px); background-color: rgba(0, 170, 255, 0.1); }

/* --- Stats Dashboard --- */
.stats-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-grow: 1; flex-wrap: wrap; }
#stats-comparison-select { background-color: #444; color: #eee; border: 1px solid #666; border-radius: 4px; padding: 8px; font-family: 'Orbitron', sans-serif; }

.stats-dashboard-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px; 
}

.stats-card { 
    background: linear-gradient(145deg, #2a2a2e, #222226); 
    padding: 20px; 
    border-radius: 8px; 
    border: 1px solid #444; 
    text-align: center; 
    display: flex;
    flex-direction: column;
}
.stats-card h4 { font-family: 'Orbitron', sans-serif; color: #00dffc; margin-top: 0; margin-bottom: 20px; font-size: 1.1em; text-transform: uppercase; }

.stats-card > div:not(.chart-wrapper) {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.stat-value { font-size: 2.5em; font-weight: bold; font-family: 'Orbitron', sans-serif; color: #00ff88; line-height: 1; word-break: break-all; }
.stat-label { font-size: 0.9em; color: #aaa; margin-top: 5px; }
.comparison-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; }
.comparison-grid .stat-value { font-size: 1.8em; }
.vs-divider { font-size: 1.5em; color: #555; font-family: 'Orbitron', sans-serif; }
.heatmap { display: grid; grid-template-rows: repeat(7, 1fr); grid-auto-flow: column; gap: 3px; overflow-x: auto; padding-bottom: 10px;}
.heatmap-cell { min-width: 15px; height: 15px; background-color: #333; border-radius: 3px; }
.heatmap-cell[data-level='1'] { background-color: #005f73; }
.heatmap-cell[data-level='2'] { background-color: #0a9396; }
.heatmap-cell[data-level='3'] { background-color: #94d2bd; }
.heatmap-cell[data-level='4'] { background-color: #e9d8a6; }

.medal-description {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 10px;
    min-height: 3em; /* Give space for description */
}

.medal-unlock-hint {
    font-size: 0.8em;
    color: #00aaff;
    font-style: italic;
    margin-top: 10px;
}

/* ===============================================================================================
// == RESPONSIVE STYLES
// =============================================================================================== */

/* --- Tablet Styles --- */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr; /* Stack main content and sidebar */
    }
}

/* --- Mobile Styles --- */
@media (max-width: 768px) {
    .main-header .container, .modal-header {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    #ft-welcome-message { font-size: 1.4em; }

    .comparison-grid {
        grid-template-columns: 1fr; /* Stack 'You vs Them' */
        gap: 15px;
    }
    .comparison-grid .vs-divider { display: none; }
    .stat-value { font-size: 2.0em; }
    .comparison-grid .stat-value { font-size: 1.8em; }
    .modal-body { padding: 15px; }
    .chart-wrapper { height: 220px; }

    /* Cramped Menu Fixes */
    .modal-title { font-size: 1.2em; }
    .stats-card h4 { font-size: 1em; }
    .edit-subsection button { margin-left: 0; }
    .form-grid { grid-template-columns: 1fr; }
}

/* --- Large Desktop Styles --- */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px; /* Allow content to use more space on very wide screens */
    }
    .modal-content {
        max-width: 1500px;
    }
    .stats-card {
        padding: 25px; /* More padding inside stat cards */
    }
    .stat-value {
        font-size: 3em; /* Larger numbers */
    }
    .comparison-grid .stat-value {
        font-size: 2.2em;
    }
    .form-grid {
        grid-template-columns: 1fr 2fr;
    }
}
