/* ============================================
   StokTakip - Public Doğrulama Sayfası Stili
   ============================================ */

body.public-page {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #1a252f 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.verify-container {
    max-width: 480px;
    width: 100%;
    padding: 20px;
}

.verify-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 40px;
    text-align: center;
}

.verify-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 4px;
}

.verify-logo i {
    color: #4e73df;
}

.verify-subtitle {
    color: #858796;
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.verify-card .form-control {
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid #e3e6f0;
    text-align: center;
    letter-spacing: 0.05em;
}

.verify-card .form-control:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 4px rgba(78,115,223,0.15);
}

.verify-card .form-label {
    font-weight: 700;
    color: #374151;
    font-size: 0.85rem;
    text-align: left;
}

.btn-verify {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 10px;
    background: linear-gradient(135deg, #4e73df, #3a5bc7);
    border: none;
    color: #fff;
    margin-top: 8px;
    transition: all 0.3s;
}

.btn-verify:hover {
    background: linear-gradient(135deg, #3a5bc7, #2a4ab7);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(78,115,223,0.4);
    color: #fff;
}

/* Sonuç */
.verify-result {
    margin-top: 24px;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.verify-result.result-original {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid #28a745;
}

.verify-result.result-fake {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 2px solid #dc3545;
}

.verify-result.result-not-found {
    background: linear-gradient(135deg, #fff3cd, #ffeeba);
    border: 2px solid #ffc107;
}

.verify-result .result-icon {
    font-size: 3rem;
    margin-bottom: 8px;
}

.verify-result .result-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.verify-result .result-details {
    font-size: 0.85rem;
    color: #555;
    margin-top: 12px;
    text-align: left;
}

.verify-footer {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-top: 24px;
}

/* Admin link */
.admin-link {
    position: fixed;
    bottom: 16px;
    right: 16px;
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    text-decoration: none;
}

.admin-link:hover {
    color: rgba(255,255,255,0.6);
}
