.feedback-section {
    margin-top: 80px;
    height: auto;
}

.feedback-title {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 4px solid var(--text-color);
    border-bottom: 4px solid var(--text-color);
    box-shadow: 0 0 15px var(--main-color);
    color: var(--main-color);
    font-size: 25px;
    margin-bottom: 20px;
}

.details-div {
    height: auto;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--main-color);
    box-shadow: 0 0 13px var(--text-color);
    margin-bottom: 20px;
}

.name-flex {
    height: auto;
    border-bottom: 4px solid var(--main-color);
    box-shadow: 0 0 13px var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.name {
    padding: 15px;
    border: 4px solid var(--main-color);
    box-shadow: 0 0 12px var(--text-color);
    border-radius: 10px;
    background: transparent;
    color: var(--main-color);
    width: 100%; 
    margin-bottom: 10px; 
}

.details-div p {
    font-size: 22px;
    text-align: center;
    color: var(--text-color);
    text-shadow: 0 0 12px var(--main-color);
}

.feedback-long-text {
    height: auto;
    margin: 15px;
    border: 4px solid var(--main-color);
    box-shadow: 0 0 12px var(--text-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
}

.long-text {
    width: 100%;
    height: 100px; 
    background: transparent;
    border: none;
    color: var(--main-color);
    margin-bottom: 10px; 
}

.button-class {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
}

.submit-button {
    padding: 18px 34px;
    border-radius: 18px;
    border: 4px solid var(--main-color);
    box-shadow: 0 0 12px var(--text-color);
    box-shadow: inset 0 0 8px var(--text-color);
    background-color: transparent;
    color: var(--text-color);
    text-shadow: var(--main-color);
}

.feedback:hover {
    text-shadow: 0 0 8px var(--text-color);
    cursor: pointer;
}

@media (max-width: 500px) {
    .feedback-long-text {
        border: none;
        box-shadow: none;
    }

    .long-text {
        border: 4px solid var(--main-color);
    }

    .name {
        width: 100%;
    }

    .details-div {
        margin-left: 10px;
        margin-right: 10px;
    }

    .name-flex input::placeholder {
        font-size: 15px;
        margin-left: 0;
    }
}

@media (max-width: 900px) and (min-width: 500px) {
    .feedback-long-text {
        border: none;
        box-shadow: none;
    }

    .long-text {
        border: 4px solid var(--main-color);
    }

    .name {
        width: 100%;
    }

    .details-div {
        margin-left: 10px;
        margin-right: 10px;
    }

    .name-flex input::placeholder {
        font-size: 15px;
        margin-left: 0;
    }
}
