/* Alap wrapper két hasábos elrendezéshez */
.kt-testimonial-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

/* Bal: űrlap oszlop */
.kt-form-col {
    flex: 1 1 320px;
    max-width: 420px;
}

/* Jobb: lista oszlop */
.kt-list-col {
    flex: 2 1 400px;
}

/* Üzenetek */
.kt-msg {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
}
.kt-msg-success {
    background: #e7f7ee;
    color: #2e7d4f;
}
.kt-msg-error {
    background: #fdecea;
    color: #c0392b;
}

/* Cím */
.kt-form-title {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Űrlap */
.kt-testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f9f9f9;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

.kt-testimonial-form input[type="text"],
.kt-testimonial-form input[type="email"],
.kt-testimonial-form select,
.kt-testimonial-form textarea,
.kt-testimonial-form input[type="file"] {
    width: 100%;
    padding: 9px 10px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.kt-testimonial-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Feltöltés label */
.kt-upload-label {
    font-size: 14px;
    margin-top: 5px;
}

/* Checkbox sor – szépen igazítva */
.kt-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.kt-consent input[type="checkbox"] {
    margin-top: 3px;
}

/* Gomb – kisebb, letisztult */
.kt-testimonial-form button,
.kt-filter-button {
    display: inline-block;
    width: auto;
    padding: 8px 18px;
    border-radius: 999px;
    border: none;
    background: #4C9A6A;   /* fő gombszín */
    color: #FFFFFF;         /* betűszín */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* enyhe árnyék */
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.kt-testimonial-form button:hover,
.kt-filter-button:hover {
    background: #5DBC82; /* hover szín */
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}

/* Szűrő sáv */
.kt-filter-bar {
    margin-bottom: 15px;
    background: #f7f7f7;
    padding: 12px 14px;
    border-radius: 8px;
}

.kt-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.kt-filter-form label {
    font-size: 13px;
    margin-right: 4px;
}

.kt-filter-form select,
.kt-filter-form input[type="text"] {
    padding: 7px 9px;
    border-radius: 6px;
    border: 1px solid #cccccc;
    font-size: 13px;
}

/* Vélemény kártyák */
.kt-testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kt-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Fejrész: avatar + meta */
.kt-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.kt-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4C9A6A;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.kt-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
}

.kt-name {
    font-weight: 600;
}

.kt-date {
    color: #777777;
    font-size: 12px;
}

.kt-category {
    font-size: 12px;
    color: #4C9A6A;
}

/* Képek a kártyán belül */
.kt-images {
    display: flex;
    gap: 8px;
    margin: 8px 0;
    flex-wrap: wrap;
}

.kt-images img.kt-thumb {
    max-width: 110px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.kt-images img.kt-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 3px 6px rgba(0,0,0,0.18);
}

.kt-text {
    font-size: 14px;
    line-height: 1.5;
}

/* Modal nagyításhoz */
#kt-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#kt-modal.open {
    display: flex;
}

.kt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.kt-modal-content {
    position: relative;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.kt-modal-content img {
    max-width: 80vw;
    max-height: 80vh;
    display: block;
    border-radius: 6px;
}

/* Modal bezáró gomb – a gombszínekkel egyezően */
.kt-modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #4C9A6A;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kt-modal-close:hover {
    background: #5DBC82;
}

/* RESPONSIVE – mobilon a lista legyen felül, űrlap alul */
@media (max-width: 768px) {
    .kt-testimonial-wrapper {
        flex-direction: column-reverse; /* lista felül, űrlap alul */
    }

    .kt-form-col,
    .kt-list-col {
        max-width: 100%;
    }

    .kt-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .kt-filter-form label {
        margin-right: 0;
    }

    .kt-testimonial-form {
        padding: 15px;
    }
}
