body{
    margin:0;
    background:#111;
    color:#fff;
    font-family:Arial,Helvetica,sans-serif;
}

.main-content{
    max-width:1100px;
    margin:40px auto;
    padding:20px;
}

.main-content h1{
    color:#FFD700;
    margin-bottom:25px;
}

.goal-card{
    background:#1b1b1b;
    border-radius:18px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.goal-card h2{
    color:#FFD700;
    margin-bottom:25px;
}

.goal-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    color:#FFD700;
    margin-bottom:8px;
    font-weight:bold;
}

.form-group input,
.form-group select,
.form-group textarea{
    background:#2b2b2b;
    color:#fff;
    border:1px solid #444;
    border-radius:10px;
    padding:12px;
    font-size:15px;
    outline:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border:1px solid #FFD700;
}

textarea{
    resize:vertical;
}

#saveGoalBtn{
    margin-top:30px;
    width:100%;
    padding:15px;
    background:#FFD700;
    color:#111;
    border:none;
    border-radius:12px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

#saveGoalBtn:hover{
    background:#ffc400;
    transform:translateY(-2px);
}

.goal-progress{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.progress-item{
    background:#242424;
    padding:20px;
    border-radius:12px;
}

.progress-item h3{
    margin-bottom:15px;
    color:#fff;
}

progress{
    width:100%;
    height:18px;
    border-radius:20px;
}

progress::-webkit-progress-bar{
    background:#333;
    border-radius:20px;
}

progress::-webkit-progress-value{
    background:#FFD700;
    border-radius:20px;
}

@media(max-width:768px){

.main-content{
    padding:15px;
}

.goal-grid{
    grid-template-columns:1fr;
}

.goal-progress{
    grid-template-columns:1fr;
}

}