/* Custom Flash Message Styles */
.custom-alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    position: fixed;
    right: 5px;
    top: 50px;
    font-size: 16px;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 8px #0000001a;
    color: #fff;
    gap: 10px;
}

.custom-alert strong {
    margin-right: 10px;
}

.custom-alert-success {
    background-color: #28a745;
}

.custom-alert-error {
    background-color: #dc3545;
}

.custom-alert-warning {
    background-color: #ffc107;
    color: #212529;
}

.custom-close-btn {
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 15px;
    padding: 5px;
    font-weight: bold;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.custom-close-btn:hover {
    color: #ffffffb3;
}

@media screen and (max-width: 480px) {

    .custom-alert {
        max-width: 100%;
        right: 1px;
    }
}
