#popup-form {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#popup-form h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

#popup-form .form-row {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
}

#popup-form label {
    font-size: 14px;
    margin-bottom: 2px;
}

#popup-form input {
    width: 100%;
    padding: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-buttons {
    display: flex;
    justify-content: space-between; /* questo li spinge ai lati opposti */
    gap: 10px;
    margin-top: 15px;
}

.submit-btn,
.close-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn {
    background-color: #4CAF50;
    color: white;
}

.close-btn {
    background-color: #f44336;
    color: white;
}

.form-row label {
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-row input[type="checkbox"] {
  transform: scale(1.2);
  cursor: pointer;
}

