.alert-container {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000; /* Ensure it's on top */
    
}

.alert {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    display: none;
    position: relative;
    width: 250px;
    font-weight: bold;
    
}

.alert.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border: 1px solid #00C853;
}

.alert.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    border: 1px solid #BF360C    ;
}

.alert .close-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    cursor: pointer;
  
}