/* ===================================
   AI MEDICAL RESPONSE EVALUATOR
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#eef5fa;
    color:#333;
    padding:40px 20px;
    line-height:1.6;
}

.container{
    max-width:1000px;
    margin:auto;
}

h1{
    text-align:center;
    color:#0f4c81;
    margin-bottom:10px;
    font-size:42px;
}

.subtitle{
    text-align:center;
    color:#009688;
    margin-bottom:40px;
    font-size:18px;
}

.card{
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

label{
    display:block;
    margin-top:20px;
    margin-bottom:8px;
    font-weight:600;
    color:#0f4c81;
}

textarea{
    width:100%;
    padding:15px;
    border:1px solid #d0d7de;
    border-radius:10px;
    resize:vertical;
    font-size:16px;
}

textarea:focus{
    outline:none;
    border-color:#009688;
    box-shadow:0 0 8px rgba(0,150,136,.25);
}

button{
    width:100%;
    margin-top:30px;
    padding:16px;
    background:#0f4c81;
    color:white;
    border:none;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#0b3d68;
}

.report{
    margin-top:35px;
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.score{
    background:#d1f7e4;
    border-left:6px solid #28a745;
    padding:18px;
    margin-top:20px;
    border-radius:10px;
}

.warning{
    background:#fff4d6;
    border-left:6px solid #f4b400;
    padding:18px;
    margin-top:20px;
    border-radius:10px;
}

.error{
    background:#ffe2e2;
    border-left:6px solid #dc3545;
    padding:18px;
    margin-top:20px;
    border-radius:10px;
}

@media(max-width:768px){

    h1{
        font-size:32px;
    }

    .card,
    .report{
        padding:25px;
    }

}