/* Front-end slider konténer: 100vh magasság, átmenetes háttér */
.feedback-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F1F7FA;
    overflow: hidden;
    background: rgb(21,57,71);
    background: -moz-linear-gradient(43deg, rgba(21,57,71,1) 0%, rgba(15,47,60,1) 35%, rgba(5,21,29,1) 85%, rgba(4,7,12,1) 100%);
    background: -webkit-linear-gradient(43deg, rgba(21,57,71,1) 0%, rgba(15,47,60,1) 35%, rgba(5,21,29,1) 85%, rgba(4,7,12,1) 100%);
    background: linear-gradient(43deg, rgba(21,57,71,1) 0%, rgba(15,47,60,1) 35%, rgba(5,21,29,1) 85%, rgba(4,7,12,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#153947",endColorstr="#04070c",GradientType=1);
}

/* Slide elemek – abszolút pozíció, teljes képernyő */
.feedback-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

/* Bal felső idézőjel ikon (opcionális, ha van) */
.feedback-slide::before {
    content: "";
    position: absolute;
    top: 7vh;
    left: 7vw;
    width: 15vh;
    height: 15vh;
    background: url("https://scoliadarts.com/wp-content/uploads/2025/03/idezojel-ico.svg") no-repeat center center;
    background-size: contain;
    z-index: 1;
    opacity: 1;
}

/* A szöveg konténer */
.feedback-text-container {
    position: absolute;
    top: 22vh;    /* Pl. a quote ikon után, finomhangolható */
    bottom: 15vh; /* A név számára fenntartott terület */
    left: 10vw;
    right: 10vw;
    /*overflow: hidden;*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

/* Az idézet szövege */
.feedback-text {
    font-family: "Saira", sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 8vh;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
    text-align: center;
}

/* A név (author) */
.feedback-author {
    position: absolute;
    bottom: 5vh;
    right: 5vw;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 6vh;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: right;
    text-transform: uppercase;
    color: #5C7B88;
    z-index: 2;
}

/* A <b> tagek stílusa (zöld kiemelés) */
.feedback-slider-container b {
    color: #5AAB30;
    font-weight: bold;
}

/* Admin felület – boxok és űrlap elemek */
#feedback-box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1vh;
    margin-top: 20px;
}

.feedback-box {
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
    box-sizing: border-box;
    flex: 1 1 calc(50% - 1vh);
    max-width: calc(50% - 1vh);
    position: relative;
}

.feedback-box input.feedback-name,
.feedback-box textarea.feedback-text {
    width: 100%;
    padding: 6px;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.feedback-box textarea.feedback-text {
    height: 80px;
    resize: vertical;
}

/* Gombok sorban */
.feedback-box-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-box-actions .left-actions,
.feedback-box-actions .center-actions,
.feedback-box-actions .right-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}


/* Admin override: textarea normál stílus */
body.wp-admin .feedback-box textarea.feedback-text {
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
}

@media screen and (max-width: 480px) {
    .feedback-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Admin felületen 2x magasabb textarea */
body.wp-admin .feedback-box textarea.feedback-text {
    min-height: 160px; /* Ha eddig 80px volt, most kétszerese */
}
