﻿.hidden {
    display: none !important;
}
/*Style showAlert*/
.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.alert {
    position: relative;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    min-width: 300px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    animation: slideIn 0.3s ease;
}

.mt-10{
    margin-top:10px;
}

.italic{
    font-style:italic;
}

.bold{
    font-weight:bold
}

.color-green {
    color: forestgreen
}

.w-140px {
    width: 140px;
}

.w-100{
    width:100%;
}

.h-200px{
    height:200px;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-icon {
    font-size: 18px;
}

.alert-message {
    font-size: 14px;
}

.alert-close {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.5;
}

    .alert-close:hover {
        opacity: 1;
    }

.alert-success {
    background: #4caf50;
    color: white;
}

.alert-error {
    background: #f44336;
    color: white;
}

.alert-warning {
    background: #ff9800;
    color: white;
}

.alert-info {
    background: #2196F3;
    color: white;
}

.alert.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}
