/* ========================================
   Patient Load Error Toast
   환자 데이터 로딩 에러 알림
   ======================================== */

.patient-load-error-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #ffffff;
    border-left: 4px solid #dc3545;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    min-width: 320px;
    max-width: 480px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.patient-load-error-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.toast-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #212529;
}

.toast-title i {
    color: #dc3545;
    font-size: 16px;
}

.toast-close-btn {
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    font-size: 18px;
    line-height: 1;
    transition: color 0.2s ease;
}

.toast-close-btn:hover {
    color: #212529;
}

.toast-message {
    font-size: 13px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 12px;
}

.toast-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.toast-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toast-btn-primary {
    background: #dc3545;
    color: white;
}

.toast-btn-primary:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.toast-btn-secondary {
    background: #f0f0f0;
    color: #495057;
}

.toast-btn-secondary:hover {
    background: #e0e0e0;
}
