/**
 * 📄 Einreichen Page
 * Spezifische Styles für einreichen.html.twig
 */

/* ═══════════════════════════════════════════════════════════
   SEND BOX (krit-sned-image-box.html.twig)
   ═══════════════════════════════════════════════════════════ */

.vortex-glass-card.send-box {
    max-width: 850px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Text Zone */
.text-zone {
    margin-bottom: 20px;
}

.vortex-accent-text {
    color: var(--trenner-titel-color, #00ffcc);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.vortex-input-area {
    width: 100%;
    min-height: 150px;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.vortex-input-area:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 255, 204, 0.6);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.1);
}

/* Divider mit Button */
.divider-logic-wrapper {
    position: relative;
    width: 90%;
    margin: 40px auto;
}

.vortex-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.center-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
}

/* Image Zone */
.image-zone-container {
    margin-top: 30px;
}

.selected-images-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.thumb-card {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: 0.2s;
}

.thumb-card:hover {
    transform: translateY(-5px);
    border-color: var(--trenner-titel-color, #00ffcc);
}

.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   ADMIN IMAGE QM (admin-image-qm.html.twig)
   ═══════════════════════════════════════════════════════════ */

.admin-master-floor {
    width: 100%;
    min-height: 400px;
    height: auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    box-sizing: border-box;
    margin-bottom: 50px;
}

.admin-grid-wrapper {
    width: 100%;
    height: 100%;
}