body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px;
    background: linear-gradient(135deg, #e0f7fa, #c2e0f9);
    color: #333;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: 30px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

h1,
h2 {
    color: #1e88e5;
    margin-bottom: 25px;
    text-align: center;
}

.form-section {
    margin-bottom: 35px;
    border: 2px solid #bbdefb;
    padding: 30px;
    border-radius: 10px;
    background-color: #f0f8ff;
}

input[type="text"],
textarea,
input[type="file"] {
    width: calc(100% - 28px);
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #81d4fa;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #e3f2fd;
}

textarea {
    resize: vertical;
}

button {
    padding: 14px 25px;
    background-color: #64b5f6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease,
    transform 0.2s ease;
}

button:hover {
    background-color: #1e88e5;
    transform: translateY(-2px);
}

#resume-preview {
    margin-top: 50px;
    border: 2px solid #bbdefb;
    padding: 35px;
    border-radius: 10px;
    background-color: #e8f5e9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    position: relative;
}

#resume-content {
    white-space: pre-line;
    line-height: 1.7;
    font-size: 17px;
    color: #444;
    text-align: left;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#resume-content strong {
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#profile-preview {
    margin: 20px auto;
    display: block;
    border-radius: 50%;
    border: 2px solid #81d4fa;
    width: 120px;
    height: 120px;
    object-fit: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.profile-picture-section input[type="file"] {
    margin-top: 10px;
}

#download-resume {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease,
    transform 0.2s ease;
}

#download-resume:hover {
    background-color: #43a047;
    transform: translateY(-2px);
}