#quote-section-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url("../images/cotiza.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

#background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Adjust the opacity as needed */
    z-index: 0;
    pointer-events: none; /* Ensure it doesn’t interfere with interactions */
}

#content-layer {
    position: relative; /* Stack above the background layer */
    z-index: 1; /* Ensures content appears above the background */
    height: 100%
}

/* Other styles remain the same */
#top-image-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;  
}

#quote-section-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    font-size: 35px;
    margin-top: 60px;
    margin-left: 20px;
}

#event-picker-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 5px 0px 5px 30px;
}

#event-type-picker {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: 5px;
}
.event-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 15px 15px 0px 15px;
}
.event-container:hover {
    background-color: rgb(255, 255, 255, 0.2);
    cursor: pointer;
    border-radius: 10px;
}
.event-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e59fa0;
    border-radius: 40px;
    width: 80px;
    height: 80px;
    cursor: pointer;
}
.event-card img {
    width: 50px;
}
.clicked-event {
    background-color: rgb(255, 255, 255, 0.2);
    cursor: pointer;
    border-radius: 10px;
}
#quote-form {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 100%;
}
#data-form-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}
#button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
}
#event-comment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 50%;
}
.form-comment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.form-comment label {
    width: calc(100% - 80px); /* 👈 Matches input width */
    font-size: 20px;
    text-align: left;
}
.form-comment textarea {
    height: 345px;
    width: calc(100% - 100px); /* 👈 Matches input width */
    resize: none;
    background-color: transparent;
    border: white 1px solid;
    border-radius: 5px;
    font-size: 16px; /* 👈 Matches input font size */
    padding: 8px 10px;
    color: white;
}
.form-comment small {
    display: flex;
    justify-content: right;
    align-items: center;
    width: calc(100% - 80px); /* 👈 Matches input width */
}
#event-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 👈 Distributes form-group elements evenly */
    align-items: center;
    width: 50%;
    height: 345px;
    padding: 10px 0; /* Optional: add padding for spacing from top/bottom */
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-top: 4px;
    margin-bottom: 4px;
}
.form-group input {
    width: 400px;
    background-color: transparent;
    border: white 1px solid;
    border-radius: 5px;
    height: 30px;
    font-size: 16px; /* 👈 Smaller text */
    color: white;
}
.form-group label {
    font-size: 20px;
}
#submit-button  {
    width: 400px;
    background-color: #e59fa0;
    border: white 1px solid;
    border-radius: 5px;
    height: 40px;
    font-size: 25px;
    color: white;
    cursor: pointer;
}
#submit-button:hover  {
    background-color: #e67c7e;
}
#event-data button:hover {
    background-color: #e68f91;
}
#whole-form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-height: 100vh;         /* 👈 Prevents from growing too tall */
    overflow-y: auto;          /* 👈 Allows scroll if content is too long */
}
