/* =========================
   INTERAKTION / EVENTS
========================= */
.event{
    cursor:pointer;
    border:1px solid #e5e5e5;
    border-radius:10px;
    transition:all .2s ease;
    background:#fff;
}

.event:hover{
    border:1px solid #56B501;
    box-shadow:0 8px 20px rgba(86,181,1,.15);
    transform:translateY(-2px);
}

.eventborder{
    border:2px solid #E9967A;
    box-shadow:0 5px 15px rgba(233,150,122,.2);
}

/* =========================
   FLEX / LAYOUT
========================= */
.iflex{
    display:flex;
    justify-content:space-around;
    align-items:stretch;
    gap:15px;
}

.pp{margin:20px;}

/* =========================
   AUSWERTUNG (CIRCLE)
========================= */
.auswertbox{
    display:inline-block;
    text-align:center;
    padding:10px;
}

.auswert{
    width:100px;
    height:100px;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-weight:700;
    font-size:18px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

/* =========================
   AMPEL (GRADIENT STYLE)
========================= */
.ampelgreen{background:linear-gradient(135deg,#56B501,#3e8600);}
.ampeldarkyellow{background:linear-gradient(135deg,#a0d805,#7fb300);}
.ampelyellow{background:linear-gradient(135deg,#d9f82a,#b5d400);}
.ampelorange{background:linear-gradient(135deg,#ff6800,#cc5200);}
.ampelred{background:linear-gradient(135deg,#fa322b,#c62822);}

.farbcode{
    display:inline-block;
    width:8px;
    height:20px;
    border-radius:3px;
    margin:0 2px;
}

/* =========================
   EMPFEHLUNG WRAPPER
========================= */
.empfehlung-wrapper{
    background:linear-gradient(135deg,#f9f9f9,#ffffff);
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.empf-title{
    font-size:26px;
    margin-bottom:20px;
    font-weight:700;
}

/* =========================
   INPUT AREA
========================= */
.empf-box{
    display:flex;
    gap:15px;
    align-items:end;
    justify-content:center;
    flex-wrap:wrap;
}

.empf-input-group{
    display:flex;
    flex-direction:column;
    text-align:left;
}

.empf-input-group label{
    font-size:12px;
    margin-bottom:5px;
    color:#777;
}

.empf-input-group input[type="number"]{
    padding:12px;
    border-radius:10px;
    border:1px solid #ddd;
    width:160px;
    font-size:16px;
    transition:.2s;
}

.empf-input-group input:focus{
    border-color:#56B501;
    box-shadow:0 0 0 3px rgba(86,181,1,.15);
    outline:none;
}

.empf-input-group.checkbox{
    justify-content:center;
}

.empf-input-group.checkbox label{
    font-size:14px;
    display:flex;
    align-items:center;
    gap:8px;
}

/* =========================
   BUTTON
========================= */
.empf-btn{
    background:linear-gradient(135deg,#56B501,#3e8600);
    color:#fff;
    border:none;
    padding:14px 20px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.empf-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(86,181,1,.3);
}

/* =========================
   RESULT GRID
========================= */
.empf-result{
    margin-top:25px;
}

.empf-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* =========================
   CARD DESIGN
========================= */
.empf-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.25s;
    text-align:left;
    position:relative;
}

.empf-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.empf-card.highlight{
    border:2px solid #56B501;
    background:linear-gradient(135deg,#ffffff,#f5fff0);
}

/* =========================
   BADGES
========================= */
.empf-badge{
    font-size:12px;
    color:#56B501;
    margin-bottom:10px;
    font-weight:700;
    text-transform:uppercase;
}

.empf-label{
    display:inline-block;
    background:#56B501;
    color:#fff;
    font-size:11px;
    padding:3px 8px;
    border-radius:6px;
    margin-bottom:5px;
}

/* =========================
   TEXT
========================= */
.empf-reason{
    font-size:13px;
    color:#666;
    margin-bottom:10px;
    line-height:1.5;
}

.empf-specs{
    font-size:12px;
    color:#888;
    line-height:1.5;
}

.empf-item{
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.empf-item:last-child{
    border-bottom:none;
}

.empf-item strong{
    font-size:14px;
    color:#222;
}

.empf-item strong a{
    text-decoration:none;
    color:#222;
}

.empf-item strong a:hover{
    color:#56B501;
}

.empf-item span{
    font-size:12px;
    color:#666;
    line-height:1.4;
}

/* =========================
   KOMBI BOX
========================= */
.empf-kombi{
    margin-top:20px;
    background:linear-gradient(135deg,#ffffff,#f8fff2);
    border-radius:18px;
    padding:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border:1px solid #e6f5da;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:900px){
    .empf-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:700px){
    .empf-box{
        flex-direction:column;
        align-items:stretch;
    }

    .empf-btn{
        width:100%;
    }

    .empf-input-group input[type="number"]{
        width:100%;
        box-sizing:border-box;
    }
}