/* Close Button */
.close-button {
    color: #2a2a2a; /* Customize the close button color */
    background-color: transparent;
    border-radius: 50%;
}

.close-button:focus {
    outline: none;
}

/* Close Button Hover Effect */
.close-button:hover {
    color: #fff; /* Customize the close button color on hover */
    background-color: #43bff0;
    border-radius: 50%;
}

.flash-message {
    position: relative;
    padding: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #43B3E0;
    color: #fff; /* White text color */
}