.Paperform__Question {
    border-radius: 20px;
    background: rgba(254, 255, 255, 0.9); /* Increased transparency */
    box-shadow: 1px 1px 1px rgba(213, 214, 214, 0.3), 
                1px 1px 15px rgba(255, 255, 255, 0.5); /* Reduced drop shadow */
}

.Paperform__Question {
    margin-bottom: 7px; /* Adjust this value to increase or decrease space */
}

.Paperform__Question {
    margin-right: 7px; /* Adds space to the right of each question */
}

/* General Form Background */
body {
    background: linear-gradient(to bottom, rgba(247, 247, 247, 0.8), rgba(233, 233, 233, 0.8)); /* More transparency */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

/* Form Container */
.paperform-container {
    background: rgba(255, 255, 255, 0.95); /* Increased transparency */
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05); /* Reduced shadow */
    max-width: 800px;
    margin: 30px auto;
}

/* Question Container */
.paperform-question {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(224, 224, 224, 0.7);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07); /* Less drop shadow */
    transition: all 0.3s ease;
}

/* Hover Effect on Questions */
.paperform-question:hover {
    background: rgba(248, 248, 248, 0.9);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); /* Subtle hover effect */
}

/* Active Question (When Focused or Answering) */
.paperform-question-active {
    border-color: #007aff;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 8px rgba(0, 122, 255, 0.2);
}

/* Input Fields */
input[type="text"], input[type="email"], input[type="number"], textarea, select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(204, 204, 204, 0.8);
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
    color: #333333;
    width: 100%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Submit Button */
.paperform-button {
    background: linear-gradient(to bottom, rgba(0, 122, 255, 0.9), rgba(0, 91, 181, 0.9));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    text-shadow: none;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect for Buttons */
.paperform-button:hover {
    background: linear-gradient(to bottom, rgba(0, 91, 181, 0.9), rgba(0, 64, 128, 0.9));
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Active Button State */
.paperform-button:active {
    background: rgba(0, 64, 128, 0.9);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
