/* Başvuru Sorgulama Sayfası Stilleri */

.sinav-basvuru-lookup-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lookup-header {
    text-align: center;
    margin-bottom: 30px;
}

.lookup-header h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
}

.lookup-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Form Stilleri */
.lookup-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #7f8c8d;
}

/* Buton Stilleri */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: #3498db;
    color: #fff;
    width: 100%;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-download {
    background: #27ae60;
    color: #fff;
    margin-right: 10px;
}

.btn-download:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    color: #fff;
}

.btn-view {
    background: #95a5a6;
    color: #fff;
}

.btn-view:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
    color: #fff;
}

/* Hata Mesajı */
.lookup-error {
    background: #fee;
    border-left: 4px solid #e74c3c;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.lookup-error p {
    margin: 0;
    color: #c0392b;
    font-size: 14px;
}

/* Başarı Mesajı */
.lookup-success {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #fff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lookup-success h3 {
    color: #27ae60;
    font-size: 24px;
    margin-bottom: 25px;
}

/* Başvuru Detayları */
.application-details {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.detail-value {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

/* İndirme Butonları */
.download-actions {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-actions .btn {
    flex: 1;
    min-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .sinav-basvuru-lookup-container {
        margin: 20px;
        padding: 20px;
    }

    .lookup-header h2 {
        font-size: 24px;
    }

    .download-actions {
        flex-direction: column;
    }

    .download-actions .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .btn-download {
        margin-right: 0;
    }
}
