/* ============================
   HLAVNÝ PANEL
============================ */
.detector-panel {
    max-width: 900px;
    margin: 40px auto;
    padding: 35px;
    background: #111c2b;
    border-radius: 22px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

/* HLAVNÉ NADPISY */
.detector-section h1 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1c2434;
}

.detector-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 35px;
}

/* ============================
   FORM LABEL
============================ */
.form-label {
    color: #ff9d15;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* ============================
   INPUT (FILE)
============================ */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
}

/* ============================
   TLAČIDLÁ RECORD + ANALYZE
============================ */
#recordBtn,
button[type="submit"] {
    width: 100%;
    background: #ff9d15;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.2s;
}

#recordBtn:hover,
button[type="submit"]:hover {
    background: #e58c12;
}

/* STOP button */
#stopBtn {
    background: #d9534f !important;
}

/* PLAY/PAUSE */
#playPauseBtn {
    background: #ff9d15 !important;
}

/* TRIM buttons */
#trimBtn {
    background: #ff9d15 !important;
}

#cancelTrimBtn {
    background: #666 !important;
}

/* ============================
   WAVEFORM
============================ */
#waveform {
    width: 100%;
    height: 150px;
    background: #0d1b2a;
    border-radius: 10px;
    box-shadow: inset 0 0 12px rgba(0,0,0,0.4);
}

/* ============================
   VÝSLEDKOVÝ BOX
============================ */
.result-box {
    margin-top: 35px;
    padding: 28px;
    background: #131d2b;
    border-radius: 20px;
    border: 2px solid #ff9d15;
    color: #fff;
}

.result-title {
    text-align: center;
    font-size: 1.9rem;
    color: #ff9d15;
    font-weight: 700;
    margin-bottom: 25px;
}

/* ============================
   PROBABILITY ROWS – final version
============================ */
.prob-row {
    display: grid;
    grid-template-columns: 220px 1fr 60px;  /* zväčšené z 180px → 220px */
    align-items: center;
    gap: 14px;                              /* menšia medzera */
    margin: 18px 0;
    min-height: 38px;
}

/* LABEL VĽAVO */
.prob-label {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;   /* nič sa už nikdy nezalomí */
    padding-right: 5px;
}

/* PROGRESS BAR – hrubší */
.prob-bar {
    width: 100%;
    height: 20px;              /* hrubé modré pozadie */
    background: #3b4658;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

/* Výplň progress baru */
.prob-fill {
    height: 100%;
    background: #ff9d15;
    border-radius: 14px;
    transition: width 0.4s ease;
}

/* % HODNOTA VPRAVO */
.prob-value {
    color: #ff9d15;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 600px) {
    .prob-row {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: unset;
    }

    .prob-label,
    .prob-value {
        text-align: center;
        padding: 0;
    }
}
