
/* Messages */
.notice-success {
    border: 1px solid green;
    padding: 15px;
    border-radius: 8px;
    background: #d9fed945;
    margin-top: 10px;
    margin-bottom: 10px;
}
.notice-success p{margin-bottom: 0 !important;}

.notice-popup {
    position: fixed;
    left: 50%;
    bottom: -100px; 
    transform: translateX(-50%); 
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0; 
    transition: bottom 0.5s ease-out, opacity 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.notice-popup.show {
    bottom: 20%;
    opacity: 1;   
}
.notice-popup.hide {
    opacity: 0;  
    transition: opacity 0.3s ease; 
}


.success-message{
    background: #4caf503b;
    color: green;
    width: 100%;
    font-size: 15px;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 30px;
}