.sheets-output-summary-container {
    margin-bottom:20px;
}

.sheets-output-summary-container p {
text-align:left;
font-size:1em;
margin-top: 0em; 
margin-bottom: 0em;
}

#sheets-output-details-container p
{
text-align:left;
font-size:1em;
margin-bottom: 10px;
}


.gde-form {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight:500;
    display: flex;                /* Make the parent a flex container */
    justify-content: center;      /* Center child elements horizontally */
    align-items: center;          /* Center child elements vertically */
    width: 100%;                  /* Make sure it takes full width */
}

.gde-form .signup-summary {
    cursor: pointer; /* Change the cursor to indicate clickable */
    background-color: #f0f0f0; /* Light background color */
    padding: 10px; /* Padding for spacing */
    border-radius: 5px; /* Slightly rounded corners */
    border: 1px solid #ccc; /* Light border */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

.gde-form .signup-summary:hover {
    background-color: #e0e0e0; /* Darker background on hover */
    transform: scale(1.02); /* Slightly enlarge on hover */
}

.gde-form .signup-summary h4 {
    margin: 0; /* Remove default margin */
    font-size: 1.2em; /* Slightly larger font size */
}
.gde-form details summary {
    display: block; /* Make the summary take the full width */
    list-style: none; /* Remove default bullet points */
    cursor: pointer; /* Ensure the cursor indicates it's clickable */
    outline: none; /* Remove focus outline */
}

.gde-form .card-wrapper {
        display: flex;
        justify-content: center; /* Horizontally center the cards */
        flex-direction: column;  /* Stack the cards vertically */
        align-items: center;     /* Align items in the center */
        padding: 0 20px 20px 20px;           /* Add some padding */
    }
.gde-form     .form-container p {
        margin-bottom:5px;
    }

    /* Card container */
.gde-form .event-card {
    max-width: 700px; /* Max width for the card */
    width: 100%; /* Ensure it is responsive */
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Ensure content stretches across the card */
}

/* Flex container for form elements */
.gde-form .form-container {
    display: flex;
    margin-bottom: 5px;
    flex-wrap: wrap; /* Allow wrapping to avoid overflow */
}

/* Left and right sections within the card */
.gde-form .form-left {
    width: 60%; /* Adjust to fit within the card */
    max-width:60%;
    box-sizing: border-box; /* Include padding and border in width */   
}
.gde-form .form-right {
    width: 38%; /* Adjust to fit within the card */
    max-width:38%;
    box-sizing: border-box; /* Include padding and border in width */
}

.gde-form .form-left {
    text-align: left;
}

.gde-form .form-right {
    display: flex;
    flex-direction: column; 
    justify-content: center; /* Vertically center the content */
    align-items: center; /* Align items to the center */
    text-align:center;
}

.gde-form .chips-container {
    display: flex; /* Use flexbox to layout chips */
    flex-direction: column;
    justify-content: center; /* Center the chips */
    margin: 10px 0; /* Add margin for spacing */
}
/* Comments section styles */
.gde-form .comments-section {
    width: 100%; /* Full width */
    margin-top: 10px; /* Space above the comments section */
}

    /* Styling the chips (tags or labels) */
.gde-form     .chip {
        display: inline-block;
        padding: 10px 20px;
        margin: 5px 0;
        border-radius: 25px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }
    
    .gde-form .chip-disabled {
    pointer-events: none; /* Prevent any click interactions */
    opacity: 0.5; /* Make them look visually disabled */
}
    
    .gde-form .chip-static {
         display: inline-block;
        padding: 10px 20px;
        margin: 5px 0;
        border-radius: 25px;
        color: white;
        font-size: 16px;
    }

    /* Hover effect for chips */
    .gde-form  .chip:hover {
        transform: scale(1.05);
    }

    /* Colors for different chip statuses */
    .gde-form  .chip.green {
        background-color: green;
    }

    .gde-form  .chip.red {
        background-color: red;
    }

    .gde-form  .chip.yellow {
        background-color: #ffd700;
        color: black;
    }
    
    .gde-form  .chip.selected {
        border: 6px solid black; 
       filter: brightness(120%);
    }

    /* Chip icon spacing */
    .gde-form .chip i {
        margin-right: 8px;
    }
    
    .gde-form  .chip-static.green {
        background-color: green;
    }

    .gde-form  .chip-static.red {
        background-color: red;
    }

    .gde-form  .chip-static.yellow {
        background-color: #ffd700;
        color: black;
    }

    /* Chip icon spacing */
    .gde-form .chip-static i {
        margin-right: 8px;
    }

    /* Input field styling */
    .gde-form  .text-input {
        width: 100%; /* Make input field span across both columns */
        margin-top: 10px;
        height:30px;
        font-size:24px;
    }

 /* Submit button styling */
.gde-form .submit-button {
    margin: 15px auto; /* Center the submit button */
    display: block; /* Change to block to respect margin auto */
    padding: 10px 20px; /* Add padding for a larger clickable area */
    font-size: 16px; /* Adjust font size */
    color: white; /* Text color */
    background-color: #28a745; /* Primary background color (green) */
    border: none; /* Remove default border */
    border-radius: 25px; /* Round the corners */
    cursor: pointer; /* Change cursor on hover */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Add transitions for hover effects */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

/* Hover effects */
.gde-form .submit-button:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-2px); /* Lift effect on hover */
}

/* Disabled state */
.gde-form .submit-button.disabled {
   /* background-color: #ccc; /* Gray out the button */
    cursor: not-allowed; /* Change the cursor */
    opacity: 0.6; /* Optional: further gray out */
    background-color:#f9f9f9;
    color:#f9f9f9;
    box-shadow:none;
}

/* Focus state */
.gde-form .submit-button:focus {
    outline: none; /* Remove outline */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Add shadow on focus */
}

    /* Add some margin between the cards */
.gde-form   .event-card + .event-card {
        margin-top: 20px;
    }

    /* Comments label styling */
.gde-form     .comments-label {
        text-align: left; /* Align comments label to the left */
        margin-top: 15px; /* Add some space above the label */
    }


