/* free-mode.css */
#free-mode-modal .modal-content {
    max-width: 350px;
    width: 90%;
}

#free-mode-modal .input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

#free-mode-modal .input-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#free-mode-modal .input-item label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #ddd;
}

#free-mode-modal .input-item input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #0088cc;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

#free-mode-modal .save-button {
    background-color: #0088cc;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

#free-mode-modal .save-button:hover {
    background-color: #006699;
}