/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.resume-template {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.resume-header {
    border-bottom: 2px solid #007bff;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.resume-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.resume-header h3 {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.contact-info {
    font-size: 1rem;
    color: #6c757d;
}

.section-title {
    font-size: 1.5rem;
    color: #007bff;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.experience-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Dashboard Styles */
.sidebar {
    position: sticky;
    top: 20px;
}

.card {
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Form Styles */
.form-label {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .resume-header h1 {
        font-size: 2rem;
    }
    
    .resume-header h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        font-size: 0.9rem;
    }
}