/* Resume Parser Styles - Enhanced Version */
#resume-parser-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    line-height: 1.6;
    font-size: 16px; /* Increased base font size */
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin-bottom: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.feature-icon {
    font-size: 1.5rem;
}

.resume-ai-branding {
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.resume-ai-branding small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.resume-ai-branding a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.resume-ai-branding a:hover {
    border-color: white;
}

/* Upload Section */
.upload-section {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.upload-container {
    max-width: 600px;
    margin: 0 auto;
}

.upload-area {
    border: 3px dashed #bdc3c7;
    border-radius: 16px;
    padding: 60px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: #3498db;
    background: linear-gradient(135deg, #ebf3fd, #dbeafe);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.upload-text strong {
    display: block;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.upload-text span {
    display: block;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 16px; /* Increased from default */
}

.upload-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px; /* Increased from 16px */
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.upload-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Progress Section */
.parsing-progress {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.progress-container {
    max-width: 500px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    width: 0;
    transition: width 0.5s ease;
    border-radius: 10px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.progress-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.step {
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #7f8c8d;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step.active {
    background: #e3f2fd;
    color: #1976d2;
    transform: scale(1.05);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    margin-bottom: 80px;
    padding: 60px 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    font-size: 16px;
}

.scoring-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.scoring-tier {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.scoring-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.tier-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.tier-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tier-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 16px; /* Added font size */
}

.tier-visual {
    margin-top: 20px;
}

.parse-demo {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 12px;
}

.parsed {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #1976d2;
}

.parse-label {
    font-size: 1rem; /* Increased from 0.9rem */
    color: #424242;
}

.quality-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-item {
    padding: 8px 12px;
    background: #e8f5e8;
    color: #2e7d32;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Checklist Section */
.checklist-section {
    margin-bottom: 80px;
    padding: 60px 30px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.checklist-category {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.checklist-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.category-icon {
    font-size: 1.8rem;
}

.category-header h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.2rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-item {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #495057;
    font-size: 16px; /* Increased from 0.95rem */
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: #e3f2fd;
    color: #1976d2;
    transform: translateX(5px);
}

/* Results Section */
.resume-results {
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out;
    font-size: 16px; /* Added base font size */
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ecf0f1;
}

.results-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin: 0;
    flex-grow: 1;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* Tabs */
.results-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
    padding: 5px;
    margin-bottom: 0;
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px; /* Increased from 14px */
    font-weight: 600;
    color: #7f8c8d;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: #e9ecef;
    color: #495057;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

/* Tab Content */
.tab-content {
    display: none;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 40px;
    font-size: 16px; /* Added font size */
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.tab-content h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tab-content p {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 16px; /* Added font size */
}

/* Score Hero */
.score-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
}

.score-circle {
    text-align: center;
    flex-shrink: 0;
}

.score-display {
    font-size: 4rem;
    font-weight: bold;
    color: #2ecc71;
    text-shadow: 0 2px 10px rgba(46, 204, 113, 0.3);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-label {
    font-size: 1.1rem; /* Increased from 1rem */
    color: #7f8c8d;
    font-weight: 500;
    margin-top: 10px;
}

.score-description h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.overview-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.overview-card h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.sections-list,
.issues-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-item,
.issue-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.section-item.found {
    background: #e8f5e8;
    color: #2e7d32;
}

.section-item.missing {
    background: #ffebee;
    color: #c62828;
}

.issue-item {
    background: #fff3e0;
    color: #f57c00;
}

/* AI Insights */
.ai-insights {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 16px;
    margin-top: 30px;
}

.ai-insights h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.ai-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.explanation-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.explanation-card h5 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.explanation-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

#specific-recommendations {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.recommendation-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.recommendation-item:last-child {
    margin-bottom: 0;
}

.recommendation-item strong {
    color: white;
}

/* AI CTA Button */
.ai-cta-button {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    margin-top: 25px;
}

.ai-cta-button .btn-primary {
    background: white;
    color: #667eea;
    font-weight: 600;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.ai-cta-button .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Results Table */
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    font-size: 16px; /* Added font size */
}

.results-table th,
.results-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px; /* Added font size */
}

.results-table th {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #dee2e6;
}

.results-table tr:hover {
    background: #f8f9fa;
}

.results-table tr:last-child td {
    border-bottom: none;
}

/* Status Indicators */
.status-found {
    color: #2ecc71;
    font-weight: 600;
}

.status-missing {
    color: #e74c3c;
    font-weight: 600;
}

.status-warning {
    color: #f39c12;
    font-weight: 600;
}

/* Experience Cards */
.experience-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.experience-header {
    margin-bottom: 15px;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.company-name {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.job-dates {
    font-size: 0.95rem;
    color: #95a5a6;
}

.job-description {
    margin-top: 20px;
    color: #555;
    line-height: 1.7;
    font-size: 16px; /* Added font size */
}

/* Skills Section */
.skills-category {
    margin-bottom: 25px;
}

.skills-category h6 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 15px; /* Increased from 0.9rem */
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

/* Why Choose Section */
.why-choose-section {
    margin-bottom: 80px;
    padding: 60px 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 16px; /* Added font size */
}

/* FAQ Section */
.faq-section {
    margin-bottom: 80px;
    padding: 60px 30px;
    font-size: 16px; /* Added base font size */
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: background 0.3s ease;
    border-bottom: 1px solid #dee2e6;
    font-size: 16px; /* Added font size */
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.faq-answer {
    padding: 20px 25px;
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 16px; /* Added font size */
}

/* Resume Builder CTA */
.resume-ai-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #ecf0f1;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-section h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.cta-section .btn-primary {
    position: relative;
    z-index: 2;
    background: white;
    color: #667eea;
    margin-bottom: 25px;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-features span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px; /* Increased from 0.95rem */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-item strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item span {
    color: #7f8c8d;
    font-size: 16px; /* Increased from 0.95rem */
    line-height: 1.5;
}

/* Error Messages */
.error-message {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border: 1px solid #f8bbd9;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 15px rgba(244, 67, 54, 0.1);
}

.error-content {
    display: flex;
    align-items: center;
    color: #c62828;
}

.error-icon {
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #resume-parser-container {
        padding: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .upload-area {
        padding: 40px 20px;
    }
    
    .results-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        border-radius: 0;
        border-bottom: 1px solid #dee2e6;
    }
    
    .tab-btn:last-child {
        border-bottom: none;
    }
    
    .overview-grid,
    .checklist-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .results-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .score-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .score-display {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .tab-content {
        padding: 25px 20px;
    }
} 