/* Official Wiki Styles */
/* Styling for the elected officials wiki pages */

:root {
    --wiki-primary: #002868;
    --wiki-secondary: #bf0a30;
    --wiki-accent: #4a90d9;
    --wiki-light: #f8f9fa;
    --wiki-dark: #1a1a1a;
    --wiki-gray: #6c757d;
    --wiki-border: #dee2e6;
    --wiki-success: #28a745;
    --wiki-warning: #ffc107;
    --wiki-danger: #dc3545;
}

/* Layout */
.wiki-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    overflow-x: hidden;
}

.wiki-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--wiki-primary);
}

.wiki-header h1 {
    color: var(--wiki-primary);
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
}

.wiki-header p {
    color: var(--wiki-gray);
    font-size: 1.1rem;
    margin: 0;
}

/* Search Section */
.wiki-search-section {
    background: linear-gradient(135deg, var(--wiki-primary) 0%, #003c8f 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
}

.wiki-search-section h2 {
    margin: 0 0 1rem 0;
    font-size: 1.8rem;
}

.wiki-search-section p {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

.search-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-tab:hover {
    background: rgba(255, 255, 255, 0.2);
}

.search-tab.active {
    background: white;
    color: var(--wiki-primary);
    border-color: white;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
}

.search-input-group input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    outline: none;
}

.search-input-group button {
    background: var(--wiki-secondary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-input-group button:hover {
    background: #a00828;
}

.address-search-form {
    display: none;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}

.address-search-form.active {
    display: grid;
}

.address-fields {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0.5rem;
}

.address-fields input {
    padding: 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
}

/* Level Filters */
.level-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.level-filter {
    background: white;
    border: 2px solid var(--wiki-border);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--wiki-dark);
}

.level-filter:hover {
    border-color: var(--wiki-primary);
    color: var(--wiki-primary);
}

.level-filter.active {
    background: var(--wiki-primary);
    color: white;
    border-color: var(--wiki-primary);
}

.level-filter .level-icon {
    margin-right: 0.5rem;
}

/* Officials Grid */
.officials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.official-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.official-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.official-card-header {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--wiki-light) 0%, white 100%);
    border-bottom: 1px solid var(--wiki-border);
}

.official-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-right: 1rem;
}

.official-photo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--wiki-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 1rem;
}

.official-basic-info h3 {
    margin: 0 0 0.25rem 0;
    color: var(--wiki-dark);
    font-size: 1.1rem;
}

.official-office {
    color: var(--wiki-gray);
    font-size: 0.9rem;
    margin: 0;
}

.official-jurisdiction {
    color: var(--wiki-primary);
    font-size: 0.8rem;
    margin: 0.25rem 0 0 0;
    font-weight: 500;
}

.official-card-body {
    padding: 1.25rem;
}

.official-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.meta-badge.level-federal {
    background: #e3f2fd;
    color: #1565c0;
}

.meta-badge.level-state {
    background: #f3e5f5;
    color: #7b1fa2;
}

.meta-badge.level-county {
    background: #e8f5e9;
    color: #2e7d32;
}

.meta-badge.level-city {
    background: #fff3e0;
    color: #ef6c00;
}

.meta-badge.party-republican {
    background: #ffebee;
    color: #c62828;
}

.meta-badge.party-democrat {
    background: #e3f2fd;
    color: #1565c0;
}

.meta-badge.party-independent,
.meta-badge.party-other {
    background: #f5f5f5;
    color: #616161;
}

.official-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--wiki-border);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wiki-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--wiki-gray);
    text-transform: uppercase;
}

/* Official Profile Page */
.profile-hero {
    background: linear-gradient(135deg, var(--wiki-primary) 0%, #003c8f 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.profile-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-photo-large {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.profile-photo-placeholder-large {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 600;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
}

.profile-office-title {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0 0 1rem 0;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.profile-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.profile-quick-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.quick-contact-item a {
    color: white;
    text-decoration: none;
    word-break: break-all;
}

.quick-contact-item a:hover {
    text-decoration: underline;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    border-bottom: 2px solid var(--wiki-border);
    margin-bottom: 2rem;
    overflow-x: auto;
}

.profile-tab {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--wiki-gray);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.profile-tab:hover {
    color: var(--wiki-primary);
}

.profile-tab.active {
    color: var(--wiki-primary);
    border-bottom-color: var(--wiki-primary);
}

.profile-tab .tab-count {
    background: var(--wiki-light);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Voting Records Table */
.voting-records-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.voting-records-table th,
.voting-records-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--wiki-border);
}

.voting-records-table th {
    background: var(--wiki-light);
    font-weight: 600;
    color: var(--wiki-dark);
}

.voting-records-table tr:hover {
    background: var(--wiki-light);
}

.vote-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.vote-badge.yes {
    background: #e8f5e9;
    color: #2e7d32;
}

.vote-badge.no {
    background: #ffebee;
    color: #c62828;
}

.vote-badge.abstain {
    background: #fff3e0;
    color: #ef6c00;
}

.vote-badge.absent {
    background: #f5f5f5;
    color: #757575;
}

/* Reference Links */
.reference-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.reference-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--wiki-accent);
}

.reference-card.featured {
    border-left-color: var(--wiki-warning);
    background: #fffdf7;
}

.reference-type-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.reference-type-badge.news_article {
    background: #e3f2fd;
    color: #1565c0;
}

.reference-type-badge.video {
    background: #ffebee;
    color: #c62828;
}

.reference-type-badge.government_minutes {
    background: #e8f5e9;
    color: #2e7d32;
}

.reference-card h4 {
    margin: 0 0 0.5rem 0;
}

.reference-card h4 a {
    color: var(--wiki-dark);
    text-decoration: none;
}

.reference-card h4 a:hover {
    color: var(--wiki-primary);
    text-decoration: underline;
}

.reference-meta {
    font-size: 0.85rem;
    color: var(--wiki-gray);
    margin-bottom: 0.5rem;
}

.reference-description {
    font-size: 0.9rem;
    color: var(--wiki-gray);
    line-height: 1.5;
}

/* Past Positions Timeline */
.positions-timeline {
    position: relative;
    padding-left: 2rem;
}

.positions-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--wiki-border);
}

.position-item {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.position-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.75rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--wiki-primary);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--wiki-primary);
    transform: translateX(-50%);
}

.position-item.current::before {
    background: var(--wiki-success);
    box-shadow: 0 0 0 3px var(--wiki-success);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.position-title {
    font-weight: 600;
    color: var(--wiki-dark);
    margin: 0;
}

.position-dates {
    font-size: 0.85rem;
    color: var(--wiki-gray);
}

.position-org {
    font-size: 0.95rem;
    color: var(--wiki-primary);
    margin: 0 0 0.5rem 0;
}

.position-description {
    font-size: 0.9rem;
    color: var(--wiki-gray);
    margin: 0;
}

/* Submission Form */
.submission-form-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.submission-form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--wiki-border);
}

.submission-form-header h2 {
    color: var(--wiki-primary);
    margin: 0 0 0.5rem 0;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: var(--wiki-dark);
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--wiki-border);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--wiki-dark);
    margin-bottom: 0.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--wiki-border);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wiki-primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group .help-text {
    font-size: 0.85rem;
    color: var(--wiki-gray);
    margin-top: 0.25rem;
}

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

/* Terms Modal */
.terms-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.terms-modal.show {
    display: flex;
}

.terms-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    margin: 1rem;
}

.terms-modal-content h2 {
    color: var(--wiki-primary);
    margin: 0 0 1.5rem 0;
}

.terms-section {
    margin-bottom: 1.5rem;
}

.terms-section h4 {
    color: var(--wiki-dark);
    margin: 0 0 0.5rem 0;
}

.terms-section p {
    color: var(--wiki-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.terms-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid var(--wiki-border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--wiki-primary);
    color: white;
}

.btn-primary:hover {
    background: #001f4d;
}

.btn-secondary {
    background: var(--wiki-light);
    color: var(--wiki-dark);
    border: 2px solid var(--wiki-border);
}

.btn-secondary:hover {
    background: #e9ecef;
}

.btn-success {
    background: var(--wiki-success);
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: var(--wiki-danger);
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--wiki-primary);
    color: var(--wiki-primary);
}

.btn-outline:hover {
    background: var(--wiki-primary);
    color: white;
}

.btn-icon {
    margin-right: 0.5rem;
}

/* Contribute Button */
.contribute-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--wiki-secondary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(191, 10, 48, 0.3);
    z-index: 100;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contribute-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(191, 10, 48, 0.4);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--wiki-gray);
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    color: var(--wiki-dark);
    margin: 0 0 0.5rem 0;
}

.empty-state p {
    margin: 0 0 1.5rem 0;
}

/* Loading State */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--wiki-border);
    border-top-color: var(--wiki-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: var(--wiki-gray);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.pending {
    background: #fff3e0;
    color: #ef6c00;
}

.status-badge.approved {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.denied {
    background: #ffebee;
    color: #c62828;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert-icon {
    font-size: 1.25rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive */
@media (max-width: 768px) {
    .wiki-container {
        padding: 1rem;
    }
    
    .wiki-header h1 {
        font-size: 1.8rem;
    }
    
    .wiki-search-section {
        padding: 2rem 1rem;
    }
    
    .search-tabs {
        flex-direction: column;
    }
    
    .address-fields {
        grid-template-columns: 1fr;
    }
    
    .level-filters {
        gap: 0.5rem;
    }
    
    .level-filter {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .officials-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .profile-badges,
    .profile-quick-contact {
        justify-content: center;
    }
    
    .profile-tabs {
        gap: 0;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .profile-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .voting-records-table {
        display: block;
        overflow-x: auto;
    }
    
    .reference-links-grid {
        grid-template-columns: 1fr;
    }
    
    /* Overview content grid - make single column on mobile */
    #overview-content > div {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Contact info - ensure text wraps and doesn't overflow */
    #overview-content a {
        word-break: break-all;
    }
    
    /* Tab content boxes */
    #tab-overview,
    #tab-voting,
    #tab-references,
    #tab-history {
        overflow-x: hidden;
    }
    
    .contribute-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Admin Specific Styles */
.admin-queue-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.admin-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wiki-primary);
}

.admin-stat-label {
    font-size: 0.85rem;
    color: var(--wiki-gray);
    text-transform: uppercase;
}

.submission-queue-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--wiki-warning);
}

.submission-queue-item.voting_record {
    border-left-color: #1565c0;
}

.submission-queue-item.reference_link {
    border-left-color: #7b1fa2;
}

.submission-queue-item.past_position {
    border-left-color: #2e7d32;
}

.submission-queue-item.profile_edit {
    border-left-color: #ef6c00;
}

.submission-queue-item.contact_info {
    border-left-color: #00838f;
}

.submission-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.submission-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.submission-actions {
    display: flex;
    gap: 0.5rem;
}

.submission-details {
    background: var(--wiki-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.denial-reason-input {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff3f3;
    border-radius: 8px;
    display: none;
}

.denial-reason-input.show {
    display: block;
}
