.oak-search-form-container {
    max-width: 800px;
    margin: 20px auto;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.oak-search-form {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.oak-search-field {
    display: flex;
    flex-direction: column;
}

.oak-search-field label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.oak-input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#oak-oktatasi-azonosito {
    flex: 1;
    min-width: 250px;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

#oak-oktatasi-azonosito:focus {
    border-color: #4e97fd;
    box-shadow: 0 0 0 3px rgba(78, 151, 253, 0.2);
    outline: none;
}

.oak-button-group {
    display: flex;
    gap: 10px;
}

.oak-submit-btn, .oak-reset-btn {
    padding: 14px 24px;
    font-size: 16px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.oak-icon {
    font-size: 18px;
}

.oak-submit-btn {
    background-image: linear-gradient(90deg, var( --e-global-color-196789d ) 0%, var( --e-global-color-89c1507 ) 100%);
    color: white;
}

.oak-submit-btn:hover {
    background-image: linear-gradient(90deg, var( --e-global-color-196789d ) 0%, var( --e-global-color-89c1507 ) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    filter: brightness(1.1);
}

.oak-reset-btn {
    background-color: #ffffff;
    color: #333;
    border: 2px solid #ddd;
}

.oak-reset-btn:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.oak-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: #666;
}

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

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

.oak-results {
    margin-top: 30px;
}

.oak-no-results {
    padding: 30px;
    text-align: center;
    background-color: #fff8e1;
    border-radius: 12px;
    color: #856404;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.oak-no-results-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.oak-no-results-text {
    font-size: 18px;
}

.oak-result-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.oak-result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.oak-result-header {
    background-image: linear-gradient(90deg, var( --e-global-color-196789d ) 0%, var( --e-global-color-89c1507 ) 100%);
    padding: 20px 25px;
    color: white;
}

.oak-result-header h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 600;
}

.oak-result-id {
    font-size: 14px;
    opacity: 0.9;
}

.oak-result-body {
    padding: 20px 25px;
}

.oak-result-row {
    padding: 12px 0;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}

.oak-result-row:last-child {
    border-bottom: none;
}

.oak-result-label {
    flex: 1;
    min-width: 150px;
    font-weight: 600;
    color: #555;
}

.oak-result-value {
    flex: 2;
    color: #333;
}

/* Admin oldal stílusai */
.oak-stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.oak-stat-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 150px;
    flex: 1;
}

.oak-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #4e97fd;
    margin-bottom: 8px;
}

.oak-stat-date {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #4e97fd;
    margin-bottom: 8px;
}

.oak-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
}

.oak-sample-notice {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-left: 4px solid #4e97fd;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .oak-input-group {
        flex-direction: column;
    }
    
    .oak-button-group {
        width: 100%;
    }
    
    .oak-submit-btn, .oak-reset-btn {
        flex: 1;
    }
    
    .oak-result-row {
        flex-direction: column;
    }
    
    .oak-result-label {
        margin-bottom: 5px;
    }
}