.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.notification-popup {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.notification-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    gap: 10px;
}

.notification-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.ok-button {
    background-color: #4CAF50;
    color: white;
}

.cancel-button {
    background-color: #f44336;
    color: white;
}
.notification-message {
    font-size: 16px;
    margin-bottom: 20px;
}
.notification-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}
.notification-icon {
    font-size: 24px;
    margin-right: 10px;
}
.notification-icon-success {
    color: #4CAF50;
}
.notification-icon-error {
    color: #f44336;
}
.notification-icon-info {
    color: #2196F3;
}
.notification-icon-warning {
    color: #FF9800;
}
.notification-icon-question {
    color: #9E9E9E;
}
.notification-icon-check {
    color: #4CAF50;
}
.notification-icon-close {
    color: #f44336;
}
.notification-icon-info-circle {
    color: #2196F3;
}
.notification-icon-warning-circle {
    color: #FF9800;
}
.notification-icon-question-circle {
    color: #9E9E9E;
}
.notification-icon-check-circle {
    color: #4CAF50;
}
.notification-icon-close-circle {
    color: #f44336;
}
.notification-icon-info-square {
    color: #2196F3;
}
.notification-icon-warning-square {
    color: #FF9800;
}
.notification-icon-question-square {
    color: #9E9E9E;
}
.notification-icon-check-square {
    color: #4CAF50;
}
.notification-icon-close-square {
    color: #f44336;
}
.notification-icon-info-circle-outline {
    color: #2196F3;
}
.notification-icon-warning-circle-outline {
    color: #FF9800;
}
.notification-icon-question-circle-outline {
    color: #9E9E9E;
}
.notification-icon-check-circle-outline {
    color: #4CAF50;
}
.notification-icon-close-circle-outline {
    color: #f44336;
}
.notification-icon-info-square-outline {
    color: #2196F3;
}
.notification-icon-warning-square-outline {
    color: #FF9800;
}
.notification-icon-question-square-outline {
    color: #9E9E9E;
}
.notification-icon-check-square-outline {
    color: #4CAF50;
}
.notification-icon-close-square-outline {
    color: #f44336;
}
.notification-icon-info-circle-filled {
    color: #2196F3;
}
.notification-icon-warning-circle-filled {
    color: #FF9800;
}
.notification-icon-question-circle-filled {
    color: #9E9E9E;
}
.notification-icon-check-circle-filled {
    color: #4CAF50;
}
.notification-icon-close-circle-filled {
    color: #f44336;
}   