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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 2rem;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #000;
    font-size: 2.5rem;
}

.photo-upload {
    text-align: center;
    margin-bottom: 2rem;
}

.photo-preview {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 1rem auto;
    border: 3px solid #000;
    overflow: hidden;
    position: relative;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-upload input[type="file"] {
    display: none;
}

.photo-upload label {
    background: #000;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    display: inline-block;
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f9fa;
}

.education-entry, .experience-entry {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #000;
}

.timeline-dot {
    position: absolute;
    left: -24px;
    top: 20px;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

button {
    background: #000;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

button:hover {
    background: #333;
    transform: translateY(-2px);
}

.add-btn {
    background: #28a745;
    margin-bottom: 1rem;
}

.add-btn:hover {
    background: #218838;
}

.skill-bars {
    list-style: none;
    padding: 0;
}

.skill-bar {
    margin-bottom: 1rem;
}

.skill-name {
    display: block;
    margin-bottom: 0.5rem;
}

.skill-level {
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.skill-level-fill {
    height: 100%;
    background: #000;
    border-radius: 5px;
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
}

