*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f1f5f9;
    padding:20px;
}

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

h1{
    text-align:center;
    margin-bottom:20px;
}

.form-box{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

label{
    display:block;
    margin-top:15px;
    font-weight:bold;
}

input,
textarea{
    width:100%;
    padding:12px;
    margin-top:5px;
    border:1px solid #ccc;
    border-radius:8px;
    outline:none;
}

input:focus,
textarea:focus{
    border-color:#2563eb;
}

.btn-group{
    margin-top:20px;
}

button{
    padding:12px 20px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    margin-right:10px;
}

button:hover{
    opacity:0.9;
}

.clear-btn{
    background:#ef4444;
    color:white;
}

button:first-child{
    background:#2563eb;
    color:white;
}

#resumePreview{
    background:white;
    margin-top:25px;
    padding:25px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.profile-image{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    margin:auto;
    margin-bottom:15px;
}

.resume-name{
    text-align:center;
    margin-bottom:10px;
}

.section{
    margin-top:20px;
}

.section h3{
    margin-bottom:8px;
    color:#2563eb;
}
