/* Sam.gov Opportunities Explorer Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #94F206 0%, #6805F3 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
    padding: 40px 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Filters Section */
.filters-section {
    margin-bottom: 30px;
}

.filters-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.filters-card h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.4rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.filter-input,
.filter-select {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #6805F3;
    box-shadow: 0 0 0 3px rgba(104, 5, 243, 0.1);
}

.naics-help,
.description-help {
    color: #666;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
    font-style: italic;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #94F206 0%, #6805F3 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(148, 242, 6, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e1e5e9;
}

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

.btn-outline {
    background: transparent;
    color: #6805F3;
    border: 2px solid #6805F3;
}

.btn-outline:hover {
    background: #6805F3;
    color: white;
}

.btn-outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Results Section */
.results-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-header h3 {
    color: #333;
    font-size: 1.4rem;
}

.results-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

#resultsCount {
    font-weight: 600;
    color: #6805F3;
}

#paginationInfo {
    font-size: 0.9rem;
    color: #666;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #666;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #94F206;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
    background: #fff5f5;
    color: #e53e3e;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #feb2b2;
    margin-bottom: 20px;
    text-align: center;
}

/* Opportunities Grid */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.opportunity-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #6805F3;
}

.opportunity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.opportunity-title {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.opportunity-type {
    background: linear-gradient(135deg, #94F206 0%, #6805F3 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.opportunity-details {
    margin-bottom: 20px;
}

.detail-row {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.detail-row strong {
    color: #555;
    display: inline-block;
    width: 140px;
}

.detail-row code {
    background: #e9ecef;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
}

.notice-id {
    background: rgba(104, 5, 243, 0.1) !important;
    color: #6805F3 !important;
    font-weight: 600;
}

.naics-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 5px;
}

.naics-badge {
    background: rgba(148, 242, 6, 0.1);
    color: #6805F3;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(104, 5, 243, 0.3);
}

.naics-more {
    background: #f0f0f0;
    color: #666;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-style: italic;
}

.opportunity-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 15px;
}

#pageInfo {
    font-weight: 600;
    color: #333;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    color: white;
    opacity: 0.8;
}

footer a {
    color: white;
    text-decoration: underline;
}

/* New styles for enhanced opportunity cards */

/* Agency hierarchy styling */
.agency-level {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
}

.sub-tier-level {
    color: #34495e;
    font-weight: 500;
    font-size: 0.9rem;
}

.office-level {
    color: #555;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Deadline status colors */
.deadline-good {
    color: #28a745;
    font-weight: 600;
}

.deadline-soon {
    color: #ffc107;
    font-weight: 600;
    background: rgba(255, 193, 7, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.deadline-expired {
    color: #dc3545;
    font-weight: 600;
    background: rgba(220, 53, 69, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.deadline-none {
    color: #6c757d;
    font-style: italic;
}

/* Set aside badge */
.set-aside-badge {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Resource links */
.resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.resource-link {
    background: #f8f9fa;
    color: #495057;
    padding: 4px 8px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

.resource-link:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-1px);
}

.resource-more {
    color: #6c757d;
    font-size: 0.8rem;
    font-style: italic;
    padding: 4px 8px;
}

/* Matched Content */
.matched-content {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px;
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #495057;
    max-height: 150px;
    overflow-y: auto;
}

.matched-content .highlight {
    background: rgba(148, 242, 6, 0.3);
    color: #6805F3;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
    border: 1px solid rgba(148, 242, 6, 0.5);
}

.matched-content br {
    margin-bottom: 8px;
}

/* Sam.gov Modal Styles */
.samgov-modal-content {
    background: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.samgov-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.samgov-title-section h1 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
}

.samgov-status {
    margin-top: 8px;
}

.status-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-badge.active {
    background: #e8f5e8;
    color: #2e7d32;
}

.samgov-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.samgov-close:hover {
    color: #495057;
}

.samgov-content {
    padding: 30px;
}

.samgov-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 15px 0;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

/* Tables */
.samgov-info-table,
.samgov-dept-table,
.samgov-classification-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.samgov-info-table td,
.samgov-classification-table td {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    vertical-align: top;
}

.samgov-info-table .label,
.samgov-classification-table .label {
    background: #f8f9fa;
    font-weight: 600;
    width: 25%;
    color: #495057;
}

.samgov-info-table .value,
.samgov-classification-table .value {
    background: white;
    width: 25%;
}

/* Department table */
.samgov-dept-table {
    background: #e3f2fd;
    border: 1px solid #90caf9;
}

.samgov-dept-table .dept-header {
    background: #bbdefb;
    padding: 8px 12px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #90caf9;
}

.samgov-dept-table .dept-value {
    padding: 12px;
    text-align: center;
    border: 1px solid #90caf9;
}

/* Description */
.samgov-description {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 4px;
    line-height: 1.6;
}

.samgov-description p {
    margin-bottom: 15px;
}

.samgov-description p:last-child {
    margin-bottom: 0;
}

/* Contact Information */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.contact-block {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
}

.contact-block h4 {
    margin: 0 0 10px 0;
    color: #495057;
    font-size: 1rem;
    font-weight: 600;
}

.contact-table {
    width: 100%;
    border-collapse: collapse;
}

.contact-table td {
    padding: 4px 8px;
    vertical-align: top;
}

.contact-label {
    font-weight: 600;
    color: #495057;
    width: 30%;
}

.contact-value {
    color: #212529;
}

/* Attachments */
.attachments-section p {
    margin: 10px 0;
    font-weight: 600;
}

.attachments-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.attachments-table th,
.attachments-table td {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    text-align: left;
}

.attachments-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.attachments-table a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.attachments-table a:hover {
    text-decoration: underline;
    color: #0a58ca;
}

.attachment-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.attachment-download:hover {
    background-color: rgba(13, 110, 253, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

#attachments-loading {
    padding: 20px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

.download-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 10px 15px;
    margin: 10px 0;
    color: #856404;
    font-size: 0.9rem;
}

.attachment-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.attachment-icon {
    font-size: 1rem;
}

.attachment-name {
    font-weight: 500;
    color: #212529;
}

.sam-gov-required {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 3px;
}

.attachment-download-btn {
    background: none;
    border: none;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.attachment-download-btn:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0a58ca;
    text-decoration: none;
}

.attachment-download-btn:active {
    background-color: rgba(13, 110, 253, 0.2);
}

/* Footer */
.samgov-footer {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 20px 30px;
    text-align: right;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.samgov-footer .btn {
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
}

.samgov-footer .btn-primary {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.samgov-footer .btn-primary:hover {
    background: #0b5ed7;
    border-color: #0a58ca;
}

.samgov-footer .btn-secondary {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.samgov-footer .btn-secondary:hover {
    background: #5c636a;
    border-color: #565e64;
}

/* Responsive */
@media (max-width: 768px) {
    .samgov-modal-content {
        width: 95%;
        margin: 1% auto;
    }
    
    .samgov-header {
        padding: 15px 20px;
    }
    
    .samgov-content {
        padding: 20px;
    }
    
    .samgov-info-table .label,
    .samgov-info-table .value {
        width: auto;
        display: block;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .samgov-footer {
        padding: 15px 20px;
        flex-direction: column;
        align-items: stretch;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    max-height: 90vh;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #94F206 0%, #6805F3 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h3 {
    color: #6805F3;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    border-bottom: 2px solid #94F206;
    padding-bottom: 5px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.detail-grid > div {
    font-size: 0.95rem;
    line-height: 1.5;
}

.description-content {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    line-height: 1.6;
    white-space: pre-wrap;
    max-height: 300px;
    overflow-y: auto;
}

.contact-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
}

.contact-info:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .filters-card {
        padding: 20px;
    }
    
    .filter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .action-buttons {
        justify-content: stretch;
    }
    
    .action-buttons .btn {
        flex: 1;
        justify-content: center;
    }
    
    .results-section {
        padding: 20px;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .results-info {
        align-items: flex-start;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .opportunity-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .opportunity-type {
        align-self: flex-start;
    }
    
    .detail-row strong {
        width: auto;
        display: block;
        margin-bottom: 5px;
    }
    
    .pagination-container {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .opportunity-card {
        padding: 20px;
    }
    
    .opportunity-actions {
        flex-direction: column;
    }
    
    .opportunity-actions .btn {
        justify-content: center;
    }
}

/* API Key Update Dialog */
.api-key-dialog {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

.dialog-header {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.dialog-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
}

.dialog-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.dialog-close:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.dialog-body {
    padding: 25px;
}

.error-message {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.error-message p {
    margin: 0;
    color: #c00;
}

.instructions {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.instructions p {
    margin: 0 0 10px 0;
    font-weight: 500;
}

.instructions ol {
    margin: 10px 0 0 20px;
    padding: 0;
}

.instructions li {
    margin: 5px 0;
}

.instructions a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.instructions a:hover {
    text-decoration: underline;
}

.api-key-input-section {
    margin-top: 20px;
}

.api-key-input-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.api-key-input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    transition: border-color 0.2s;
}

.api-key-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.update-status {
    margin-top: 10px;
    min-height: 20px;
}

.update-status .error {
    color: #dc3545;
}

.update-status .success {
    color: #28a745;
}

.update-status .info {
    color: #17a2b8;
}

.dialog-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
}