#mhp-modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

#mhp-modal-content {
    width: 90%;
    max-width: 500px;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

#mhp-modal-content form label {
    display: block;
    margin-bottom: 12px;
}
#mhp-modal-content button {
    margin-top: 10px;
    margin-right: 10px;
}

#mhp-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #323232;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#mhp-toast.show {
    display: block;
    opacity: 1;
}

#mhp-calendar {
    max-width: 100%;
    width: 100%;
    margin: 20px auto;
    padding: 0 10px;
    box-sizing: border-box;
}
