/* IkoJob Application Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Layout */
.main-content {
    min-height: calc(100vh - 140px);
    padding: 20px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-title a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
}

.nav-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    background: white;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Styles */
.form-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.job-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.5;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-help {
    margin-top: 0.5rem;
}

.input-help small {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
    display: block;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #667eea;
}

.choice-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.choice-btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Flash Messages */
.flash-message {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
}

.flash-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.flash-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* File Upload Styles */
.file-upload-container {
    position: relative;
    margin-top: 0.5rem;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 2px dashed #e1e5e9;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: #667eea;
    background: #f0f2ff;
}

.file-input:focus + .file-upload-label {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.file-upload-text {
    color: #666;
    font-size: 0.95rem;
}

.file-upload-button {
    background: #667eea;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.file-upload-info {
    margin-top: 0.5rem;
}

.file-upload-info small {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
    display: block;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #17a2b8;
}

/* File selected state */
.file-input:valid + .file-upload-label {
    border-color: #28a745;
    background: #f0fff4;
}

.file-input:valid + .file-upload-label .file-upload-text {
    color: #28a745;
    font-weight: 500;
}

.file-input:valid + .file-upload-label .file-upload-button {
    background: #28a745;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-info {
    background: #17a2b8;
    color: white;
}

.btn-info:hover {
    background: #138496;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.feature-card h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Document Sections */
.document-section {
    background: white;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.resume-section {
    border-left: 4px solid #28a745;
}

.cover-letter-section {
    border-left: 4px solid #007bff;
}

.email-section {
    border-left: 4px solid #17a2b8;
}

.document-section h2 {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    margin: 0;
    color: #333;
    border-bottom: 1px solid #e9ecef;
}

.document-content {
    padding: 1.5rem;
}

.document-content pre {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    max-height: 400px;
    overflow-y: auto;
}

.document-actions {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

/* Result Header */
.result-header {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.result-header h1 {
    color: #333;
    margin-bottom: 0.5rem;
}

.job-detection-notice {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 6px;
    padding: 0.75rem;
    margin: 1rem 0;
    color: #2e7d32;
}

/* Email Form */
.email-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
}

.email-form .form-group {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.email-form .form-input {
    flex: 1;
}

.email-update-notice {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
}

.email-update-notice p {
    margin: 0;
    color: #0066cc;
    font-size: 0.9rem;
}

.email-prefill-notice {
    background: #e8f5e8;
    border: 1px solid #b3d9b3;
    border-radius: 4px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.email-prefill-notice small {
    color: #28a745;
    font-size: 0.875rem;
}

.subject-prefill-notice {
    background: #e8f5e8;
    border: 1px solid #b3d9b3;
    border-radius: 4px;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.subject-prefill-notice small {
    color: #28a745;
    font-size: 0.875rem;
}

/* Loading and Messages */
.loading {
    display: none;
    color: #666;
    font-style: italic;
    margin-left: 10px;
}

.message-area {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    display: none;
}

.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

/* Icons (using text symbols for simplicity) */
.icon-download::before { content: "⬇ "; }
.icon-generate::before { content: "✨ "; }
.icon-email::before { content: "📧 "; }
.icon-resume::before { content: "📄 "; }
.icon-cover-letter::before { content: "📝 "; }

/* Footer */
.footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Featured Image Styles */
.featured-image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image-full {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 1200 / 630; /* Standard social media aspect ratio */
}

.featured-image-card {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 4px;
    background: #f8f9fa;
}

/* Job List Featured Images */
.job-card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: #f8f9fa;
    border-radius: 4px;
    padding: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .nav-title a {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .email-form .form-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .choice-buttons {
        flex-direction: column;
    }
    
    .choice-btn {
        min-width: auto;
        width: 100%;
    }
    
    /* Mobile featured image adjustments */
    .featured-image-full {
        max-height: 300px;
        object-fit: cover;
    }
    
    .job-card-image {
        height: 120px;
        object-fit: cover;
        padding: 2px;
    }
}
/* Document Editing Styles */
.document-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
}

.title-section {
    flex: 1;
    margin-right: 1rem;
}

.editable-title {
    margin: 0;
    color: #333;
    background: none;
    padding: 0.25rem 0.5rem;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    min-width: 200px;
}

.editable-title:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.editable-title.editing {
    display: none;
}

.title-editor {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    background: white;
    border: 2px solid #667eea;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    width: 100%;
    max-width: 500px;
    font-family: inherit;
}

.title-editor:focus {
    outline: none;
    border-color: #4c63d2;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.title-hint {
    display: block;
    color: #6c757d;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.document-header h2 {
    margin: 0;
    color: #333;
    background: none;
    padding: 0;
    border: none;
}

.edit-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.875rem;
    margin: 0;
}

.btn-outline {
    background: transparent;
    color: #6c757d;
    border: 1px solid #6c757d;
}

.btn-outline:hover {
    background: #6c757d;
    color: white;
    transform: none;
}

.document-editor {
    width: 100%;
    min-height: 300px;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    resize: vertical;
    background: #fff;
}

.document-editor:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.document-display {
    transition: opacity 0.3s ease;
}

.editing-mode .document-display {
    opacity: 0.7;
}

.edit-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    color: #856404;
    font-size: 0.9rem;
}

/* Icons for editing */
.icon-edit::before { content: "✏️ "; }
.icon-save::before { content: "💾 "; }

/* Responsive editing controls */
@media (max-width: 768px) {
    .document-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .title-section {
        width: 100%;
        margin-right: 0;
    }
    
    .editable-title {
        font-size: 1.25rem;
        min-width: auto;
        width: 100%;
    }
    
    .title-editor {
        font-size: 1.25rem;
        width: 100%;
        max-width: none;
    }
    
    .edit-controls {
        width: 100%;
        justify-content: flex-end;
    }
    
    .btn-sm {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}
/* Enhanced Email Form Styles */
.email-form .form-group {
    display: block;
    margin-bottom: 1rem;
}

.email-form .form-group:last-of-type {
    margin-bottom: 0;
}

.email-form .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.email-form .form-input {
    width: 100%;
    margin-bottom: 0;
}

.email-form .btn {
    width: 100%;
    margin: 0;
}

/* Subject input specific styling */
#emailSubject {
    font-weight: 500;
}

#emailSubject:focus {
    background-color: #fff;
}

/* Responsive email form */
@media (min-width: 768px) {
    .email-form {
        max-width: 600px;
    }
    
    .email-form .btn {
        width: auto;
        min-width: 150px;
    }
}
/* Subject Line Suggestions Styles */
.subject-help {
    margin-top: 0.5rem;
}

.subject-help small {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
    display: block;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #17a2b8;
}

.subject-suggestions {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.suggestion-btn {
    background: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #495057;
}

.suggestion-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Subject Options Modal Styles */
.subject-options-modal h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.1rem;
}

.subject-option {
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subject-option:hover {
    background: #f8f9fa;
    border-color: #667eea;
}

.subject-option strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.subject-option small {
    color: #666;
    font-size: 0.8rem;
}

.subject-option:last-child {
    text-align: center;
    color: #666;
    font-style: italic;
}

.subject-option:last-child:hover {
    background: #f8f9fa;
    border-color: #dc3545;
}

/* Enhanced subject input */
#emailSubject {
    font-weight: 500;
    position: relative;
}

#emailSubject:focus {
    background-color: #fff;
    border-color: #667eea;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .subject-suggestions {
        flex-direction: column;
    }
    
    .suggestion-btn {
        width: 100%;
        text-align: left;
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .subject-options-modal {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }
}
/* Field Protection and Differentiation */
#emailSubject {
    background-color: #f8f9fa;
    border-left: 3px solid #28a745;
    font-family: inherit;
    font-weight: 500;
}

#emailSubject:focus {
    background-color: #fff;
    border-left-color: #667eea;
}

#emailInput {
    background-color: #fff;
    border-left: 3px solid #17a2b8;
}

#emailInput:focus {
    border-left-color: #667eea;
}

/* Prevent autocomplete styling conflicts */
#emailSubject:-webkit-autofill,
#emailSubject:-webkit-autofill:hover,
#emailSubject:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #f8f9fa inset !important;
    -webkit-text-fill-color: #333 !important;
    background-color: #f8f9fa !important;
}

#emailInput:-webkit-autofill,
#emailInput:-webkit-autofill:hover,
#emailInput:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #333 !important;
    background-color: #fff !important;
}

/* Field type indicators */
.form-group:has(input[data-field-type="subject"]) {
    position: relative;
}

.form-group:has(input[data-field-type="subject"])::after {
    content: "📝";
    position: absolute;
    right: 10px;
    top: 35px;
    font-size: 0.9rem;
    opacity: 0.5;
    pointer-events: none;
}

.form-group:has(input[data-field-type="email"]) {
    position: relative;
}

.form-group:has(input[data-field-type="email"])::after {
    content: "📧";
    position: absolute;
    right: 10px;
    top: 35px;
    font-size: 0.9rem;
    opacity: 0.5;
    pointer-events: none;
}
/* Email Form Sections */
.subject-section,
.recipient-section,
.action-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
}

.subject-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.recipient-section {
    background: #fff;
    border: 1px solid #dee2e6;
}

.action-section {
    background: #f8f9fa;
    text-align: center;
}

/* Specific input styling */
.subject-input {
    background-color: #fff !important;
    border-left: 3px solid #28a745 !important;
    font-weight: 500;
}

.subject-input:focus {
    border-left-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1) !important;
}

.email-input {
    background-color: #fff !important;
    border-left: 3px solid #17a2b8 !important;
}

.email-input:focus {
    border-left-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1) !important;
}

/* Override any autocomplete styling */
.subject-input:-webkit-autofill,
.subject-input:-webkit-autofill:hover,
.subject-input:-webkit-autofill:focus,
.subject-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #333 !important;
    background-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.email-input:-webkit-autofill,
.email-input:-webkit-autofill:hover,
.email-input:-webkit-autofill:focus,
.email-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #333 !important;
    background-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Responsive sections */
@media (max-width: 768px) {
    .subject-section,
    .recipient-section,
    .action-section {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
}
/* New Application Section */
.new-application-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.new-application-section .form-group {
    margin-bottom: 0.5rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.help-text {
    margin-top: 0.5rem;
}

.help-text small {
    color: #666;
    font-size: 0.875rem;
    font-style: italic;
}

/* New job icon */
.icon-new-job::before { content: "🆕 "; }

/* Enhanced secondary button styling */
.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(108, 117, 125, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .new-application-section {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .btn-block {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}
/* Enhanced button styles for better hierarchy */
.btn-outline {
    background: transparent;
    color: #6c757d;
    border: 1px solid #6c757d;
    font-weight: 500;
}

.btn-outline:hover {
    background: #6c757d;
    color: white;
    transform: none; /* Less dramatic hover for secondary actions */
    box-shadow: 0 2px 6px rgba(108, 117, 125, 0.2);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.875rem;
    margin: 0;
}

/* Improve visual hierarchy */
.result-header .btn-outline {
    margin-top: 1rem;
    opacity: 0.8;
}

.result-header .btn-outline:hover {
    opacity: 1;
}

/* Make the bottom button more prominent */
.new-application-section .btn-secondary {
    font-size: 1.1rem;
    padding: 0.875rem 2rem;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

.new-application-section .btn-secondary:hover {
    box-shadow: 0 4px 16px rgba(108, 117, 125, 0.3);
}

/* Add subtle animation to draw attention to the bottom button */
@keyframes subtle-pulse {
    0% { box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2); }
    50% { box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3); }
    100% { box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2); }
}

.new-application-section .btn-secondary {
    animation: subtle-pulse 3s ease-in-out infinite;
}

.new-application-section .btn-secondary:hover {
    animation: none; /* Stop animation on hover */
}