.dashboard{padding:10px 0px 18px;}

.dashboard-title
    {
        margin-top:8px;

        font-size:18px;

        color:#64748b;

        font-weight:500;
    }

.header-left h1{font-size:42px;margin-bottom:8px;}

.header
{
    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    padding:15px 0 30px;
}

.header-right
{
    display:flex;

    align-items:center;

    gap:15px;
}

.side-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:24px;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    padding:15px;
    height:calc(100vh - 190px);
}

.side-card{
    min-width:0;
}

.main-grid{
    display:grid;
    grid-template-columns:2.2fr 1fr;
    gap:10px;
    align-items:stretch;
}

.tab-container{
    display:flex;
    flex-direction:column;
    flex:1;
    overflow:hidden;
}

.tab-buttons
{
    display:flex;

    gap:10px;

    margin-bottom:15px;

    width:100%;
}

.tab-btn
{
    flex:1;

    padding:12px 18px;

    border:none;

    border-radius:12px;

    background:#edf2f7;

    cursor:pointer;

    font-size:17px;

    font-weight:600;

    transition:.3s;

    height:58px;
}

.tab-btn .lucide {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.tab-btn:hover
{
    background:#dbeafe;
}

.tab-btn.active
{
    color:white;

    background:linear-gradient(90deg, #ef476f, #7c3aed);
}

.tab-content
{
    display:none;

    opacity:0;

    transform:translateY(15px);

    transition:.3s;
}

.tab-content h4{
    margin:10px 0 22px;
}

.tab-content.active{
    display:flex;
    flex-direction:column;
    flex:1;
    gap:18px;
    overflow-y:auto;
    opacity:1;
    transform:translateY(0);
}

.playback-field-label {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.playback-field-label svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    flex-shrink: 0;
}
