
.audio-tracker {
    display: flex;
    width: 100%;
    max-width: 600px;
    gap: 12px;
    padding: 18px;
    background: #F4F4F4;
    border-radius: 6px;
    align-items: center;
    margin-bottom: 1em;
    body {
        font-family: "Segoe UI", sans-serif;
        background: #f7f9fc;
        padding: 2em;
        color: #333;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }


    #playBtn {
        width: 57px;
        height: 57px;
        border-radius: 50%;
        background: #D41A1B;
        color: white;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #progress-container {
        width: 100%;
        background: #fff;
        height: unset;
        border-radius: 6px;
        margin-top: 6px;
    }
    strong {
        font-size: 14px;
    }

    #progress-bar {
        height: 100%;
        width: 0%;
        background: #D41A1B;
        border-radius: 6px;
        transition: width 0.12s linear;
    }

    #time-display {
        margin-top: 8px;
        font-size: 14px;
        color: #333;
    }

    textarea {
        width: 100%;
        max-width: 600px;
        height: 220px;
        padding: 1em;
        border-radius: 8px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        font-size: 0.95rem;
    }
}
