body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h1, h3 { color: #2c3e50; }

section { margin-bottom: 20px; }

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea { height: 100px; resize: vertical; }

button {
    background-color: #27ae60;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

button:hover { background-color: #219150; }

/* CV Template Styling (PDF Specific) */
#cv-template {
    padding: 40px;
    background: white;
}

.cv-header {
    border-bottom: 2px solid #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.cv-body h4 {
    text-transform: uppercase;
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    margin-top: 20px;
}

.hidden { display: none !important
; }