/* ============================================
   Modern Indian Voter Portal - Orange Theme
   Pure CSS3 - No Frameworks
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    --orange-primary: #F97316;
    --orange-dark: #EA580C;
    --orange-light: #FB923C;
    --orange-bright: #FF6B35;
    --orange-deep: #C2410C;
    --orange-gold: #FF8C42;
    --white: #FFFFFF;
    --gray-light: #F3F4F6;
    --gray-medium: #9CA3AF;
    --gray-dark: #4B5563;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Performance optimizations */
img {
    content-visibility: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Optimize rendering */
.search-section,
.voter-card,
.modal-content {
    contain: layout style paint;
}

/* Reduce repaints */
.btn,
.form-input,
.tab-button {
    will-change: transform, background-color;
}

/* GPU acceleration for smooth animations */
.btn:hover,
.voter-card:hover,
.social-icon:hover {
    transform: translateZ(0);
    backface-visibility: hidden;
}

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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #FFD4B3 0%, #FFB88C 15%, #FF9F66 30%, #FF8C42 50%, #FF6B35 70%, #F97316 85%, #EA580C 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* ===== Container & Layout ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* ===== Company Header ===== */
.company-header {
    background: linear-gradient(135deg, #FF6B35 0%, #F97316 30%, #FB923C 60%, #FF8C42 100%);
    padding: 0.25rem 0;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.15);
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.company-name {
    text-align: center;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.5;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    font-family: 'Nirmala UI', 'Mangal', 'Arial Unicode MS', 'Microsoft YaHei UI', 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
    padding: 0.4rem 1rem;
    text-transform: none;
    word-spacing: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.company-name-main {
    font-size: 1.3em;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFFFFF;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.company-name-separator {
    font-size: 1.1em;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.9;
    margin: 0 0.25rem;
    text-align: center;
}

.company-name-sub {
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.7px;
    color: #FFFFFF;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* ===== Header ===== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1.25rem 0;
    margin-top: 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.header-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.header-logo img,
.banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    max-height: none;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-xl);
    background: var(--white);
    padding: 1rem;
    margin: 0 auto;
}

.header-title {
    text-align: center;
}

.header-title h1 {
    color: var(--orange-primary);
    font-size: 1.75rem;
    margin: 0;
}

.header-title p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}

.election-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.election-date,
.election-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F97316 50%, #FB923C 100%);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.election-date:hover,
.election-time:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.election-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== Announcement Banner ===== */
.announcement-banner {
    background: linear-gradient(135deg, var(--warning) 0%, #F97316 100%);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.announcement-banner p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.announcement-banner strong {
    font-weight: 700;
}

/* ===== Main Content ===== */
.main-content {
    flex: 1;
    padding: 2rem 0;
}

/* ===== Search Section ===== */
.search-section {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.12);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.search-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.search-title h2 {
    color: var(--orange-primary);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.search-title p {
    color: var(--gray-dark);
    font-size: 1rem;
}

/* ===== Step Guide ===== */
.step-guide {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8D6 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #FF6B35;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
}

.step-guide h4 {
    color: #FF6B35;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.step-list {
    list-style: none;
    counter-reset: step-counter;
}

.step-list li {
    counter-increment: step-counter;
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--gray-dark);
    font-size: 1rem;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F97316 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.25);
}

/* ===== Tabs ===== */
.tab-container {
    margin-bottom: 2rem;
}

.tab-nav {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--gray-light);
    margin-bottom: 1.5rem;
}

.tab-button {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--gray-dark);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.tab-button:hover {
    color: var(--orange-primary);
    background: var(--gray-light);
}

.tab-button.active {
    color: #FF6B35;
    border-bottom-color: #FF6B35;
    background: rgba(255, 107, 53, 0.08);
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Optimize animations for performance */
@media (prefers-reduced-motion: no-preference) {
    .tab-content.active {
        animation: fadeIn 0.2s ease;
    }
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Responsive form layout - ensures proper order: FN > MN > Surname */
@media (max-width: 992px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-field-last {
        grid-column: 1 / -1; /* Surname takes full width on medium screens */
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-field-first {
        order: 1;
    }
    
    .form-field-middle {
        order: 2;
    }
    
    .form-field-last {
        order: 3;
        grid-column: 1;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 1rem;
}

.form-label span {
    flex: 1;
}

.required-asterisk {
    color: var(--error);
    font-weight: 600;
}

.form-label-icon {
    width: 20px;
    height: 20px;
    fill: var(--orange-primary);
}

.form-input {
    width: 100% !important;
    max-width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--white);
    color: var(--gray-dark);
    will-change: border-color, box-shadow;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    background: #FFFBF8;
}

.form-input::placeholder {
    color: var(--gray-medium);
}

/* ===== Buttons ===== */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    min-height: 48px;
    min-width: 120px;
}

.btn:focus {
    outline: 3px solid rgba(107, 70, 193, 0.3);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F97316 50%, #FB923C 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F97316 0%, #FF6B35 50%, #FF8C42 100%);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

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

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

.btn-secondary:hover {
    background: var(--orange-primary);
    color: var(--white);
}

.btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== Results Section ===== */
.results-section {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    margin-top: 2rem;
    min-height: 200px;
}

.results-title {
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===== Voter Cards ===== */
.voter-card {
    background: var(--white);
    border: 2px solid rgba(255, 107, 53, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
    transition: all 0.3s ease;
}

.voter-card:hover {
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.voter-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
}

.voter-name {
    color: var(--orange-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.voter-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.voter-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.voter-detail-label {
    font-size: 0.875rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.voter-detail-value {
    font-size: 1rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.voter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-action {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    min-height: 40px;
    min-width: auto;
}

/* ===== Modal ===== */
.modal {
    display: none !important;
    position: fixed !important;
    z-index: 99999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px);
    margin: 0 !important;
    padding: 0 !important;
}

.modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--white) !important;
    margin: auto !important;
    padding: 0 !important;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    animation: slideUp 0.3s ease;
    position: relative !important;
    z-index: 100000 !important;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F97316 50%, #FB923C 100%);
    color: var(--white);
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.modal-header h2 {
    margin: 0;
    color: var(--white);
}

.close {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover,
.close:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem;
}

/* ===== Footer ===== */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: 3rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--orange-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--orange-primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #F97316 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25);
}

.social-icon:hover {
    background: linear-gradient(135deg, #F97316 0%, #FF8C42 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.footer-copyright label {
    color: var(--orange-primary);
    font-weight: 500;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .company-name {
        font-size: 1rem;
        padding: 0.35rem 0.75rem;
        letter-spacing: 0.7px;
        gap: 0.4rem;
    }
    
    .company-name-main {
        font-size: 1.25em;
    }
    
    .company-name-sub {
        font-size: 0.95em;
    }

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

    .header-logo img,
    .banner-image {
        height: auto;
        min-height: 200px;
        max-height: none;
        padding: 0.75rem;
    }

    .election-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .search-section {
        padding: 1.5rem;
    }

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

    .tab-nav {
        flex-direction: column;
    }

    .tab-button {
        border-bottom: none;
        border-left: 3px solid transparent;
        border-radius: 8px;
    }

    .tab-button.active {
        border-left-color: var(--orange-primary);
        border-bottom-color: transparent;
        background: var(--gray-light);
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .voter-details {
        grid-template-columns: 1fr;
    }

    .voter-actions {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 0.95rem;
        padding: 0.3rem 0.5rem;
        letter-spacing: 0.5px;
        word-spacing: 0.15em;
        gap: 0.3rem;
        flex-direction: column;
    }
    
    .company-name-main {
        font-size: 1.2em;
        letter-spacing: 0.8px;
    }
    
    .company-name-separator {
        display: none;
    }
    
    .company-name-sub {
        font-size: 0.9em;
        letter-spacing: 0.6px;
    }

    .header-title h1 {
        font-size: 1.25rem;
    }

    .header {
        padding: 0.75rem 0;
    }
    
    .header .container {
        padding: 0 3px;
        max-width: 100%;
        width: 100%;
    }
    
    .header-content {
        padding: 0;
        margin: 0;
    }
    
    .header-logo {
        margin: 0;
        padding: 0;
        width: 100%;
        margin-bottom: 0;
    }
    
    .header-logo img,
    .banner-image {
        height: auto;
        min-height: 150px;
        max-height: none;
        padding: 0;
        margin: 0;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        background: var(--white);
        object-fit: cover;
        object-position: center;
    }

    .search-section {
        padding: 1rem;
    }

    .step-guide {
        padding: 1rem;
    }

    .voter-card {
        padding: 1rem;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--orange-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --orange-primary: #C2410C;
        --gray-dark: #000000;
    }
    
    .form-input {
        border-width: 3px;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Legacy class support (for backward compatibility) */
.card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.card-body {
    padding: 0;
}

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

.card-button {
    padding: 0.625rem 1.25rem;
    background: var(--orange-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.card-button:hover {
    background: var(--orange-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Print styles */
@media print {
    body {
        background: var(--white);
    }
    
    .header,
    .footer,
    .button-group,
    .voter-actions {
        display: none;
    }
    
    .search-section,
    .voter-card {
        box-shadow: none;
        border: 1px solid var(--gray-medium);
    }
}
