/* Notification styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 350px;
}

.toast {
    color: #fff;
    width: 100%;
    min-height: 60px;
    margin-bottom: 10px;
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.35) !important;
    border: none !important;
    font-size: 16px !important;
    overflow: hidden;
}

.toast.bg-success {
    background-color: #28a745 !important;
}

.toast.bg-danger {
    background-color: #dc3545 !important;
}

.toast.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.toast.bg-info {
    background-color: #17a2b8 !important;
}

.toast-header {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-weight: bold;
    font-size: 16px !important;
}

.toast.bg-warning .toast-header {
    color: #212529 !important;
}

.toast-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.toast.bg-warning .toast-header .btn-close {
    filter: none;
}

.toast-body {
    padding: 12px 15px !important;
    font-size: 15px !important;
}

.toast-icon {
    margin-right: 8px;
    font-size: 16px;
}

/* Bootstrap Modal Extensions */
.modal-confirm .modal-header {
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.modal-confirm .modal-header .modal-title {
    color: #333;
}

.modal-confirm .modal-header .icon-box {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.modal-confirm .modal-body {
    color: #555;
    font-size: 16px;
}

.modal-confirm .modal-footer {
    border-top: 1px solid #e9ecef;
    justify-content: space-between;
    gap: 10px;
}

.modal-confirm .btn-modal-cancel {
    background: #e9ecef;
    color: #495057;
}

.modal-confirm .btn-modal-confirm {
    background: #4361ee;
    color: white;
} 