#app_salary_calculator{
    background:#0f172a;
    padding:30px;
    border-radius:16px;
    max-width:950px;
    margin:auto;
    color:white;
    font-family:Inter,system-ui;
}
#app_salary_calculator h2{color:#e5e7eb;}
.app_salary_grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:20px;
}
.field label{
    display:block;
    margin-bottom:5px;
    color:#cbd5f5;
}
.field input,
.field select{
    width:100%;
    padding:12px;
    border-radius:10px;
    border:2px solid #38bdf8;
    background:#0f172a;
    color:white;
}
#app_salary_calculate{
    background:#38bdf8;
    color:#0f172a;
    padding:12px 20px;
    border:none;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
}
.app_salary_results{
    margin-top:25px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}
.card{
    flex:1;
    background:#1e293b;
    padding:20px;
    border-radius:12px;
    text-align:center;
}
#app_salary_table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
    display:none;
}
#app_salary_table th,
#app_salary_table td{
    border:1px solid #38bdf8;
    padding:8px;
    text-align:left;
}
#app_salary_table th{
    background:#1e293b;
    color:#e5e7eb;
}
#app_salary_table tfoot td{
    font-weight:bold;
}
#app_salary_chart{
    max-width:600px;
    max-height:300px;
    width:100%;
    height:auto;
    margin:20px auto 0 auto;
    display:block;
}