.veri-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

.veri-search-form {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.veri-search-form h2 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.veri-description {
    color: #718096;
    margin: 0 0 24px;
    font-size: 0.95rem;
}

.veri-form-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.veri-form-group {
    flex: 1;
    min-width: 200px;
}

.veri-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 6px;
}

.veri-form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.veri-form-group input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
}

.veri-form-submit {
    flex: 0 0 auto;
    min-width: auto;
}

.veri-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.veri-btn-primary {
    background: #3182ce;
    color: #fff;
}

.veri-btn-primary:hover {
    background: #2b6cb0;
}

.veri-btn-primary:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

.veri-btn-secondary {
    background: #48bb78;
    color: #fff;
}

.veri-btn-secondary:hover {
    background: #38a169;
}

.veri-btn-outline {
    background: transparent;
    color: #3182ce;
    border: 1px solid #3182ce;
}

.veri-btn-outline:hover {
    background: #ebf8ff;
}

.veri-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: veri-spin 0.6s linear infinite;
}

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

.veri-error {
    margin-top: 16px;
    padding: 12px 16px;
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    font-size: 0.9rem;
}

.veri-loading {
    text-align: center;
    padding: 48px 20px;
}

.veri-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: #3182ce;
    border-radius: 50%;
    animation: veri-spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

.veri-loading p {
    color: #718096;
    font-size: 0.95rem;
}

.veri-results-section {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

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

.veri-results-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a202c;
}

.veri-results-actions {
    display: flex;
    gap: 8px;
}

.veri-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.veri-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.veri-table thead th {
    background: #f7fafc;
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    color: #4a5568;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}

.veri-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid #edf2f7;
    color: #2d3748;
    vertical-align: top;
}

.veri-table tbody tr:hover {
    background: #f7fafc;
}

.veri-table tbody td a {
    color: #3182ce;
    text-decoration: none;
}

.veri-table tbody td a:hover {
    text-decoration: underline;
}

.veri-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.veri-rating-star {
    color: #ecc94b;
}

.veri-history-section h2 {
    margin: 0 0 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.veri-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.veri-pagination button {
    padding: 8px 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    background: #fff;
    color: #4a5568;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.veri-pagination button:hover {
    background: #edf2f7;
}

.veri-pagination button.active {
    background: #3182ce;
    color: #fff;
    border-color: #3182ce;
}

.veri-view-btn {
    padding: 6px 12px;
    background: #ebf8ff;
    color: #2b6cb0;
    border: 1px solid #bee3f8;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

.veri-view-btn:hover {
    background: #bee3f8;
}

@media (max-width: 768px) {
    .veri-form-row {
        flex-direction: column;
    }

    .veri-form-group {
        min-width: 100%;
    }

    .veri-results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .veri-table {
        font-size: 0.8rem;
    }

    .veri-table thead th,
    .veri-table tbody td {
        padding: 8px 10px;
    }
}
