*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Inter,Arial,sans-serif;
}

body{
    background:#eef2f7;
    min-height:100vh;
    padding:25px;
}

.container{
    width:100%;
    max-width:1500px;
    margin:auto;
    background:white;
    border-radius:24px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.header-title{
    font-size:40px;
    font-weight:700;
}

.title-section p{
    margin-top:10px;
    color:#64748b;
}

.language-box{
    width:300px;
}

.language-box label{
    display:block;
    margin-bottom:8px;
}

.language-box select{
    width:100%;
    padding:12px;
    border:1px solid #cbd5e1;
    border-radius:10px;
    font-size:16px;
}

.main-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.panel{
    border:1px solid #e2e8f0;
    border-radius:20px;
    padding:20px;
}

.panel-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:20px;
}

.panel-header h2{
    margin-bottom:8px;
}

.panel-header p{
    color:#64748b;
}

.record-btn{
    background:#2563eb;
    color:white;
    border:none;
    padding:14px 20px;
    border-radius:12px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
}

.record-btn.recording{
    background:#dc2626;
}

textarea{
    width:100%;
    height:500px;
    border:1px solid #cbd5e1;
    border-radius:14px;
    padding:15px;
    resize:none;
    overflow-y:auto;
    font-size:18px;
}

.status{
    margin-top:10px;
    color:#64748b;
}

.action-buttons{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-top:15px;
}

.clear-btn{
    background:white;
    border:1px solid #cbd5e1;
    padding:12px 18px;
    border-radius:10px;
    cursor:pointer;
}

.translate-btn{
    background:#2563eb;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:10px;
    cursor:pointer;
}
