
.modal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.modal-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    color: #07074d;
}

.modal-close {
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
}

.modal-content label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #07074d;
    margin-bottom: 12px;
}

.modal-content input {
    width: 100%;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: white;
    font-weight: 500;
    font-size: 16px;
    color: #6b7280;
    outline: none;
    resize: none;
    margin-bottom: 20px;
}

.modal-content input:focus {
    border-color: #6a64f1;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.modal-content button {
    width: 100%;
    padding: 14px 32px;
    background-color: #6a64f1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.modal-content button:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}