* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.modal {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: flex; 
    align-items: center;
    justify-content: center;
    z-index: 999; 
    display: none;
}

.modal.show {
    display: flex; 
}

.modal.hidden {
    display: none; 
}

.modal-content {
    background-color: #522947; 
    border-radius: 15px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
    width: 90vw; 
    max-width: 500px; 
    overflow: hidden; 
}

.modal-header {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 15px;
    background-color: #422237; 
}

.modal-title {
    color: #93c0fc; 
    font-size: 24px; 
}

.modal-close {
    background: none; 
    border: none; 
    color: #fff; 
    font-size: 24px; 
    cursor: pointer; 
    transition: color 0.3s; 
}

.modal-close:hover {
    color: #93c0fc; 
}

.modal-body {
    padding: 20px; 
}

.modal-form {
    display: flex;
    flex-direction: column; 
    gap: 15px; 
}

.modal-form label {
    color: #fff; 
}

.modal-form input,
.modal-form textarea {
    padding: 10px; 
    border: none; 
    border-radius: 5px; 
    background-color: #d3d3d3; 
    color: #333; 
    font-size: 16px; 
}

.modal-footer button {
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    color: #fff; 
    background-color: #93c0fc; 
    transition: background-color 0.3s; 
    margin-left: 10px; 
}

.modal-footer .modal-cancel {
    margin-right: 10px; 
}

.modal-footer button {
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    color: #fff;
    background-color: #93c0fc; 
    transition: background-color 0.3s; 
}

.modal-footer button:hover {
    background-color: #7aa8d6; 
}

.modal-cancel {
    background-color: #ff4c4c; 
}

.modal-cancel:hover {
    background-color: #e63939; 
}
