/* ==========================================================================
   INDPDF.COM - Central Design System & Stylesheet
   Theme: Digital India Trust (Official, Sleek, Safe, and Professional)
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&family=Noto+Sans+Bengali:wght@300;400;500;600;700&family=Hind+Siliguri:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary: #0b428c;         /* Trusted Gov Blue */
    --primary-hover: #072d60;   /* Deeper Blue */
    --primary-light: #e8eff9;   /* Soft Blue Accent */
    --secondary: #0066cc;       /* Modern Digital Blue */
    --accent-saffron: #ff9933;  /* Indian Flag Saffron */
    --accent-green: #128807;    /* Indian Flag Green */
    --success: #128807;         /* Success state */
    --warning: #ff9933;         /* Warning state */
    --danger: #d93838;          /* Error state */
    
    /* Backgrounds and Neutral Surfaces */
    --bg-main: #f5f8fc;         /* Warm off-white */
    --bg-card: #ffffff;         /* Pure white */
    --text-main: #1e293b;       /* Slate 800 */
    --text-muted: #64748b;      /* Slate 500 */
    --border-color: #cbd5e1;    /* Slate 300 */
    --border-hover: #0b428c;
    
    /* Layout Constants */
    --font-heading: 'Outfit', 'Hind Siliguri', 'Inter', sans-serif;
    --font-body: 'Inter', 'Noto Sans Bengali', sans-serif;
    --border-radius: 12px;
    --shadow-sm: 0 2px 4px rgba(11, 66, 140, 0.04);
    --shadow-md: 0 4px 12px rgba(11, 66, 140, 0.06);
    --shadow-lg: 0 10px 25px -5px rgba(11, 66, 140, 0.1), 0 8px 10px -6px rgba(11, 66, 140, 0.1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Indian Tricolor Accent Top Stripe */
.tricolor-stripe {
    display: flex;
    height: 4px;
    width: 100%;
}
.stripe-saffron { flex: 1; background-color: var(--accent-saffron); }
.stripe-white { flex: 1; background-color: #ffffff; }
.stripe-green { flex: 1; background-color: var(--accent-green); }

/* Header & Navigation Styles */
header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(11, 66, 140, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-top {
    background-color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    text-align: center;
    padding: 6px 12px;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.header-top svg {
    height: 14px;
    width: 14px;
    fill: currentColor;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-saffron), var(--primary), var(--accent-green));
    padding: 2px;
}

.logo-icon-inner {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-inner svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    animation: rotate-chakra 20s linear infinite;
}

@keyframes rotate-chakra {
    100% { transform: rotate(360deg); }
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    padding: 6px 12px;
    border-radius: 6px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background-color: var(--primary-light);
}

.nav-cta {
    background-color: var(--primary);
    color: #ffffff !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 6px -1px rgba(11, 66, 140, 0.2);
}

.nav-cta:hover {
    background-color: var(--primary-hover) !important;
    color: #ffffff !important;
}

/* Security Trust Banner */
.security-banner {
    background: linear-gradient(90deg, #edf2fc 0%, #f4f7fe 100%);
    border-bottom: 1px solid rgba(11, 66, 140, 0.08);
    padding: 10px 24px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.security-banner svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.security-banner strong {
    font-weight: 600;
}

/* Main Container */
main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 24px;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 48px;
}

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

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 24px auto;
}

/* Tool Search Bar */
.search-container {
    max-width: 500px;
    margin: 0 auto 32px auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 14px 18px 14px 46px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    outline: none;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 66, 140, 0.15);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

/* Tools Grid Layout */
.tools-section {
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-saffron);
    padding-left: 12px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
    gap: 20px;
    justify-content: center;
}

/* Tool Card */
.tool-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid rgba(11, 66, 140, 0.08);
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 66, 140, 0.15);
}

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

.tool-icon {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

/* Tool Categories Colors */
.tool-pdf .tool-icon { background-color: #fee2e2; color: #dc2626; }
.tool-office .tool-icon { background-color: #eff6ff; color: #2563eb; }
.tool-image .tool-icon { background-color: #f0fdf4; color: #16a34a; }

.tool-pdf::before { background-color: #dc2626; }
.tool-office::before { background-color: #2563eb; }
.tool-image::before { background-color: #16a34a; }

.tool-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.tool-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 16px;
    line-height: 1.5;
}

.tool-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    background-color: var(--primary-light);
    color: var(--primary);
    text-transform: uppercase;
}

.tool-action-btn {
    align-self: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.tool-card:hover .tool-action-btn {
    text-decoration: underline;
}

/* Interactive Dashboard & Converter Interface */
.converter-container {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 66, 140, 0.08);
    padding: 32px;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

/* Modern File Dropzone */
.dropzone {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 48px 24px;
    text-align: center;
    background-color: var(--bg-main);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.dropzone:hover,
.dropzone.dragover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.dropzone-icon {
    width: 64px;
    height: 64px;
    color: var(--primary);
    margin: 0 auto 16px auto;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.dropzone:hover .dropzone-icon {
    transform: scale(1.1);
    opacity: 1;
}

.dropzone-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.dropzone-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dropzone-input {
    display: none;
}

/* Upload List / Dashboard View */
.file-dashboard {
    display: none; /* Shown dynamically when files are selected */
    margin-top: 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    background-color: #ffffff;
}

.file-dashboard-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(11, 66, 140, 0.08);
    text-align: center;
}

.file-dashboard-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.file-list {
    list-style: none;
    max-height: 240px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    align-items: center;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-main);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    border: 1px solid rgba(11, 66, 140, 0.04);
    width: 100%;
    max-width: 500px;
}

.file-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.file-item-name {
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.file-item-size {
    color: var(--text-muted);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.file-item-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.file-item-remove:hover {
    background-color: rgba(217, 56, 56, 0.1);
}

/* Control Options Panel */
.options-panel {
    margin-top: 16px;
    padding: 14px;
    background-color: var(--primary-light);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--primary);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.option-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-group label {
    font-weight: 600;
}

.option-group select,
.option-group input[type="text"] {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    font-family: var(--font-body);
}

/* Active Progress Dashboard */
.progress-panel {
    display: none;
    margin-top: 20px;
    background-color: var(--bg-main);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.progress-info {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.progress-bar-container {
    height: 8px;
    width: 100%;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

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

/* Action Trigger & Downloader Button styles */
.action-container {
    margin-top: 20px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 6px rgba(11, 66, 140, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(11, 66, 140, 0.25);
}

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

.btn-primary:disabled {
    background-color: var(--border-color);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-success {
    background-color: var(--success);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 6px rgba(18, 136, 7, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-success:hover {
    background-color: #0d6305;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(18, 136, 7, 0.25);
}

/* Verification Checklist / Indian Pride Banners */
.why-local-container {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 32px;
    border: 1px solid rgba(11, 66, 140, 0.08);
    box-shadow: var(--shadow-sm);
    margin-bottom: 48px;
}

.why-local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.why-local-item {
    display: flex;
    gap: 16px;
}

.why-local-item-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background-color: var(--primary-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-local-item-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.why-local-item-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* User Manual Guide Section */
.guide-section {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 32px;
    border: 1px solid rgba(11, 66, 140, 0.08);
    box-shadow: var(--shadow-sm);
    margin-bottom: 48px;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.guide-step {
    position: relative;
    padding: 16px;
    background-color: var(--bg-main);
    border-radius: 8px;
    border: 1px solid rgba(11, 66, 140, 0.04);
}

.guide-step-num {
    position: absolute;
    top: -12px;
    left: 16px;
    background-color: var(--accent-saffron);
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(255, 153, 51, 0.3);
}

.guide-step h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 8px;
    margin-top: 4px;
    font-weight: 600;
}

.guide-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Programmatic SEO FAQ Section */
.faq-section {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 32px;
    border: 1px solid rgba(11, 66, 140, 0.08);
    box-shadow: var(--shadow-sm);
    margin-bottom: 48px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-main);
    transition: var(--transition-fast);
}

.faq-question {
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1); /* Quick slide transition */
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 1000px;
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-toggle-icon {
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-saffron);
}

/* Page Footer styling */
footer {
    background-color: #0b1a30;
    color: #ffffff;
    padding: 48px 24px 24px 24px;
    margin-top: auto;
    border-top: 4px solid var(--accent-saffron);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.85rem;
    max-width: 400px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--accent-saffron);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.75rem;
    color: #94a3b8;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.indian-flag-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #cbd5e1;
}

.mini-flag {
    width: 20px;
    height: 12px;
    background: linear-gradient(180deg, var(--accent-saffron) 33.3%, #ffffff 33.3%, #ffffff 66.6%, var(--accent-green) 66.6%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

/* Legal text formatting styles */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.legal-container h1 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.legal-container h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.legal-container li {
    margin-bottom: 8px;
}

/* Alert Box */
.alert {
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: rgba(18, 136, 7, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(18, 136, 7, 0.2);
}

.alert-warning {
    background-color: rgba(255, 153, 51, 0.1);
    color: #cc6a00;
    border: 1px solid rgba(255, 153, 51, 0.2);
}

.alert-danger {
    background-color: rgba(217, 56, 56, 0.1);
    color: var(--danger);
    border: 1px solid rgba(217, 56, 56, 0.2);
}
