/* Toast mesajları */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.toast-item {
    pointer-events: auto;
    min-width: 280px;
    max-width: 400px;
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: toastIn 0.35s ease;
    color: #333;
}
.toast-item.toast-out {
    animation: toastOut 0.3s ease forwards;
}
.toast-item.success { background: #d4edda; border-left: 4px solid #28a745; }
.toast-item.danger { background: #f8d7da; border-left: 4px solid #dc3545; }
.toast-item.warning { background: #fff3cd; border-left: 4px solid #ffc107; }
.toast-item.info { background: #d1ecf1; border-left: 4px solid #17a2b8; }
.toast-item .toast-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 1.2em;
    opacity: 0.7;
    line-height: 1;
}
.toast-item .toast-close:hover { opacity: 1; }
.toast-item .toast-body { flex: 1; }
@keyframes toastIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes toastOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Sözleşme modal geri sayım barı */
.agreement-countdown-wrap { margin-bottom: 1rem; }
.countdown-text { font-size: 0.95rem; margin-bottom: 0.5rem; }
.countdown-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}
.countdown-fill {
    height: 100%;
    width: 100%;
    background: #0d6efd;
    border-radius: 4px;
    transition: width 1s linear;
}
/* agreement-text yüksekliği style.css'deki agreement-modal ile birlikte ayarlandı */
.agreement-text p { margin-bottom: 0.75rem; }
.agreement-checkboxes .agreement-link { text-decoration: underline; }
.form-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.form-buttons .btn-cancel { background: #6c757d; color: #fff; }
.recaptcha-placeholder { display: inline-flex; align-items: center; gap: 8px; padding: 8px 0; }
.recaptcha-placeholder label { margin: 0; cursor: pointer; }
.math-captcha-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
}
.math-captcha-inline {
    display: inline-block;
    margin: 0;
    font-weight: normal;
}
.math-captcha-input {
    width: 90px;
    display: inline-block;
}
