:root {
    --primary-color: #021930;
    --secondary-color: #9aa0ba;
    --accent-color: #ff9900;
    --text-color: #333333;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --dark-gray: #666666;
    --border-color: #dddddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}
/* alert Dialog */
.alert-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.alert-dialog.active {
    display: flex;
}

.alert-dialog-content {
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    animation: dialogFadeIn 0.3s ease;
}

@keyframes dialogFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-dialog-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-dialog-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color:white;
}


.alert-dialog-body {
    padding: 20px;
}

.alert-dialog-body p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
}

.alert-dialog-footer {
    padding: 15px 20px;
    background-color: var(--gray-color);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.alert-dialog-footer button {
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.alert-dialog-footer button:focus {
    outline: none;
}

#confirmOk {
    background-color: var(--danger-color);
    color: var(--light-color);
    border: none;
}

#confirmOk:hover {
    background-color: #c82333;
}

.close-alert-dialog {
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}



/* Confirmation Dialog */
.confirmation-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.confirmation-dialog.active {
    display: flex;
}

.confirmation-dialog-content {
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    animation: dialogFadeIn 0.3s ease;
}

@keyframes dialogFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmation-dialog-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.confirmation-dialog-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color:white;
}


.close-dialog {
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.confirmation-dialog-body {
    padding: 20px;
}

.confirmation-dialog-body p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
}

.confirmation-dialog-footer {
    padding: 15px 20px;
    background-color: var(--gray-color);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.confirmation-dialog-footer button {
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.confirmation-dialog-footer button:focus {
    outline: none;
}

#confirmYes {
    background-color: var(--danger-color);
    color: var(--light-color);
    border: none;
}

#confirmYes:hover {
    background-color: #c82333;
}

#confirmNo {
    background-color: var(--gray-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

#confirmNo:hover {
    background-color: #e2e6ea;
}






.error-element-alert {
    color: red !important;
    font-size: 14px;
!important;
    font-weight: 400 !important;
    margin-right: auto;
    padding-top: 1px;
}

.section-error-alert {
    color: red !important;
    font-size: 17px;
!important;
    font-weight: 400 !important;
    margin-right: auto;
    padding-top: 1px;
}