.job-description-paragraph {
    margin-bottom: 2.5rem;
}

.tag {
    margin-right: 0.3rem;
}

.job-title-column {
    padding: 0 0 0 1rem;
}

.job-list-information-column {
    padding: 0 0 0.8rem 1rem;
}

.job-listing {
    align-items: center;
}

.navbar-item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.navbar-end .navbar-item:last-child {
    margin-bottom: 0.5rem;
}

/* Prominent link to the Advanced Job Search page, shown next to the simple search box */
.navbar-advanced-search-link {
    display: flex;
    align-items: center;
    font-weight: 600;
    white-space: nowrap;
}

/* Navbar logo styles - make logo scale with navbar height */
.navbar-logo-item {
    display: flex;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-logo-link {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 10rem; /* Much larger, fixed height */
    width: auto;
    object-fit: contain;
}

/* Make logo even larger on desktop screens */
@media screen and (min-width: 1024px) {
    .navbar-logo {
        height: 4rem;
    }
}

@media screen and (min-width: 1024px) {
    .navbar-brand {
        margin-left: 0; /* Align with content below */
    }

    /* Hide mobile burger menu on desktop */
    .navbar-burger-item {
        display: none !important;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    /* Hide mobile burger menu on tablet */
    .navbar-burger-item {
        display: none !important;
    }
}

/* Unread message indicator on navbar hamburger menu */
.navbar-menu-button {
    position: relative;
}

.navbar-unread-indicator {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 10px;
    height: 10px;
    background-color: #e74c3c;
    border-radius: 50%;
    border: 2px solid white;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .navbar-unread-indicator {
        top: 3px;
        right: 3px;
        width: 8px;
        height: 8px;
    }
}

/* Select bucket component styles */
.select-bucket-container {
    margin-bottom: 1rem;
}

.select-container {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* Set fixed width for all select boxes in SelectBucket */
.select-container .select {
    width: 240px; /* Fixed width for consistency */
}

.select-container .select select {
    width: 100%;
}

.add-button {
    margin-left: 0.5rem;
    cursor: pointer;
}

.add-button:hover {
    color: #485fc7; /* Bulma primary color */
}

/* Cookie banner styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #363636;
    color: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-banner-text {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-banner-link {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-banner-link:hover {
    color: #f0f0f0;
}

/* Home page styles */
html {
    scroll-behavior: smooth;
}

.home-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 1.5rem;
    color: white;
    text-align: center;
}

.home-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.home-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.home-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.home-cta-button {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.home-cta-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.home-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    color: #667eea;
}

.home-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.home-cta-secondary:hover {
    background: white;
    color: #667eea;
}

.home-features {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.home-features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.home-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #667eea;
}

.home-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.home-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.home-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.home-feature-description {
    color: #5a6c7d;
    line-height: 1.6;
}

.home-jobs-section {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.home-jobs-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.home-job-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.home-job-card:hover {
    border-left-color: #667eea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateX(4px);
}

.home-job-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.75rem;
    text-decoration: none;
    display: inline-block;
}

.home-job-title:hover {
    color: #764ba2;
    text-decoration: underline;
}

.home-job-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: #5a6c7d;
    font-size: 0.95rem;
}

.home-job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-job-meta-icon {
    color: #667eea;
}

.home-loading {
    text-align: center;
    padding: 4rem;
    font-size: 1.5rem;
    color: #667eea;
}

.home-error {
    background: #fee;
    color: #c33;
    padding: 1rem;
    border-radius: 4px;
    margin: 2rem;
}

/* Glossary page styles */
.glossary-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1.5rem;
    color: white;
    text-align: center;
}

.glossary-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.glossary-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.glossary-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.glossary-section {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.glossary-letter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #667eea;
}

.glossary-term {
    margin-bottom: 2rem;
}

.glossary-term:last-child {
    margin-bottom: 0;
}

.glossary-term-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.glossary-term-definition {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 0.75rem;
}

.glossary-term-example {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 3px solid #e0e0e0;
}

.glossary-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.glossary-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-text {
        width: 100%;
    }

    /* Position hamburger menu in navbar-brand on mobile */
    .navbar-burger-item {
        margin-left: auto !important;
        margin-right: 0.5rem !important;
    }

    /* Hide desktop dropdown on mobile */
    .navbar-desktop-item {
        display: none !important;
    }

    /* Fix dropdown menu positioning on mobile - override Bulma's .is-right behavior */
    .navbar-brand .dropdown.is-right .dropdown-menu {
        left: auto !important;
        right: 0 !important;
        min-width: 12rem !important;
    }

    /* Add visual separator between job listings on mobile */
    .job-listing {
        border-bottom: 2px solid #dbdbdb;
        padding-bottom: 1rem;
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
    }

    .job-listing:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0 !important;
    }

    .job-list-information-column {
        padding-bottom: 0;
    }

    /* Home page mobile styles */
    .home-hero-title {
        font-size: 2rem;
    }

    .home-hero-subtitle {
        font-size: 1.1rem;
    }

    .home-features-title,
    .home-jobs-title {
        font-size: 2rem;
    }

    .home-job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Glossary page mobile styles */
    .glossary-title {
        font-size: 2rem;
    }

    .glossary-section {
        padding: 1.5rem;
    }

    .glossary-letter {
        font-size: 2rem;
    }

    .glossary-term-name {
        font-size: 1.25rem;
    }
}

/* Job Seeker Job Matches page styles */
.matches2-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1.5rem;
    color: white;
    text-align: center;
}

.matches2-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.matches2-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.matches2-content {
    padding: 3rem 0;
}

.matches2-loading {
    text-align: center;
    padding: 4rem;
    font-size: 1.5rem;
    color: #667eea;
}

.matches2-error {
    background: #fee;
    color: #c33;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.matches2-empty {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.matches2-empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.matches2-empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.matches2-empty-text {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.matches2-empty-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.matches2-empty-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    color: white;
}

@media screen and (max-width: 768px) {
    .matches2-title {
        font-size: 2rem;
    }

    .matches2-empty {
        padding: 2rem;
    }
}

/* Job List Scored component styles */
.job-list2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.job-list2-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
}

.job-list2-card:hover {
    border-left-color: #667eea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateX(4px);
}

.job-list2-info {
    flex: 1;
}

.job-list2-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.75rem;
    text-decoration: none;
    display: inline-block;
}

.job-list2-title:hover {
    color: #764ba2;
    text-decoration: underline;
}

.job-list2-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: #5a6c7d;
    font-size: 0.95rem;
}

.job-list2-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-list2-meta-icon {
    color: #667eea;
}

.job-list2-score {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.job-list2-score-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-list2-score-value {
    font-size: 1.75rem;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .job-list2-card {
        grid-template-columns: 1fr;
    }

    .job-list2-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .job-list2-score {
        width: 100%;
    }
}

/* Job Performance Dashboard styles */
.dashboard2-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1.5rem;
    color: white;
    text-align: center;
}

.dashboard2-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.dashboard2-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.dashboard2-content {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.dashboard2-loading {
    text-align: center;
    padding: 4rem;
    font-size: 1.5rem;
    color: #667eea;
}

.dashboard2-error {
    background: #fee;
    color: #c33;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.dashboard2-empty {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.dashboard2-empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.dashboard2-empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.dashboard2-empty-text {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.dashboard2-empty-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.dashboard2-empty-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.dashboard2-job-card {
    background: white;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #667eea;
}

.dashboard2-job-card-expired {
    border-left-color: #ff5555;
}

.dashboard2-badge-expired {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    background: #ff5555;
    color: white;
    vertical-align: middle;
}

.dashboard2-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard2-job-title-area {
    flex: 1;
    min-width: 250px;
}

.dashboard2-job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.25rem;
}

.dashboard2-job-title:hover {
    color: #764ba2;
    text-decoration: underline;
}

.dashboard2-job-date {
    color: #5a6c7d;
    font-size: 0.875rem;
}

.dashboard2-job-discontinued {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.dashboard2-job-discontinued label {
    cursor: pointer;
    user-select: none;
    color: #2c3e50;
    font-weight: 500;
}

.dashboard2-job-discontinued input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.dashboard2-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.dashboard2-stat {
    text-align: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.dashboard2-stat-label {
    font-size: 0.75rem;
    color: #5a6c7d;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard2-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

@media screen and (max-width: 768px) {
    .dashboard2-title {
        font-size: 2rem;
    }

    .dashboard2-job-header {
        flex-direction: column;
    }

    .dashboard2-stats {
        grid-template-columns: 1fr;
    }
}

/* Job Detail page styles */
.job2-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1.5rem;
    color: white;
}

.job2-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.job2-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.job2-company {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.job2-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.job2-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job2-status-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.job2-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.job2-badge-expired {
    background: #ff5555;
    color: white;
}

.job2-badge-discontinued {
    background: #ffaa00;
    color: white;
}

.job2-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.job2-section {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.job2-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

.job2-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.job2-description:last-child {
    margin-bottom: 0;
}

.job2-tags-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.job2-tags-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.job2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job2-tag {
    background: white;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid #667eea;
    transition: all 0.2s ease;
}

.job2-tag:hover {
    background: #667eea;
    color: white;
}

.job2-apply-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.job2-apply-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.job2-apply-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.job2-apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    color: #667eea;
}

.job2-loading,
.job2-not-found,
.job2-error {
    text-align: center;
    padding: 4rem 1.5rem;
}

.job2-loading {
    font-size: 1.5rem;
    color: #667eea;
}

.job2-not-found {
    font-size: 1.5rem;
    color: #5a6c7d;
}

.job2-error {
    background: #fee;
    color: #c33;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem;
}

@media screen and (max-width: 768px) {
    .job2-title {
        font-size: 1.75rem;
    }

    .job2-company {
        font-size: 1.25rem;
    }

    .job2-section {
        padding: 1.5rem;
    }

    .job2-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Edit Profile page styles */
.profile2-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1.5rem;
    color: white;
    text-align: center;
}

.profile2-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
}

.profile2-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.profile2-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile2-section-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 4px solid #667eea;
}

.profile2-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.profile2-loading {
    text-align: center;
    padding: 4rem;
    font-size: 1.5rem;
    color: #667eea;
}

@media screen and (max-width: 768px) {
    .profile2-title {
        font-size: 2rem;
    }

    .profile2-section-grid {
        grid-template-columns: 1fr;
    }

    .profile2-section-card {
        padding: 1.5rem;
    }
}

/* Choose Profile Type page styles */
.profile2-choose-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1.5rem;
    color: white;
    text-align: center;
}

.profile2-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.profile2-choose-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.profile2-choose-content {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.profile2-choose-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.profile2-choose-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #667eea;
    cursor: pointer;
}

.profile2-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.profile2-choose-card-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.profile2-choose-card-disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.profile2-choose-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.profile2-choose-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.profile2-choose-card-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.profile2-choose-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.profile2-choose-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

@media screen and (max-width: 768px) {
    .profile2-choose-title {
        font-size: 2rem;
    }

    .profile2-choose-cards {
        grid-template-columns: 1fr;
    }
}

/* Create Job page styles */
.create-job-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1.5rem;
    color: white;
    text-align: center;
}

.create-job-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.create-job-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.create-job-content {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.create-job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.create-job-section-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 4px solid #667eea;
}

@media screen and (max-width: 768px) {
    .create-job-title {
        font-size: 2rem;
    }

    .create-job-grid {
        grid-template-columns: 1fr;
    }

    .create-job-section-card {
        padding: 1.5rem;
    }
}

/* Inbox page styles */
.inbox2-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1.5rem;
    color: white;
    text-align: center;
}

.inbox2-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
}

.inbox2-hero-error {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.inbox2-error-message {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
    opacity: 0.95;
}

.inbox2-content {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.inbox2-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    height: calc(100vh - 300px);
    min-height: 500px;
}

.inbox2-message-list {
    overflow-y: auto;
    padding-right: 0.5rem;
}

.inbox2-message-item {
    background: white;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.inbox2-message-item:hover {
    border-left-color: #667eea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateX(4px);
}

.inbox2-message-item-selected {
    border-left-color: #667eea;
    background: #f0f3ff;
}

.inbox2-message-subject {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.inbox2-message-subject-unread {
    font-weight: 700;
}

.inbox2-message-subject-read {
    font-weight: 400;
}

.inbox2-message-sender {
    font-size: 0.875rem;
    color: #5a6c7d;
    margin-bottom: 0.25rem;
}

.inbox2-message-sender-label {
    font-weight: 600;
}

.inbox2-message-participant {
    font-size: 0.8rem;
    color: #5a6c7d;
    font-weight: 500;
}

.inbox2-message-timestamp {
    font-size: 0.75rem;
    color: #999;
}

.inbox2-detail-container {
    overflow-y: auto;
}

.inbox2-detail {
    background: white;
    padding: 1.25rem 2.5rem 2.5rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
}

.inbox2-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.inbox2-detail-header-info {
    flex: 1;
}

.inbox2-detail-subject {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.inbox2-detail-from {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.inbox2-detail-from-label {
    font-weight: 600;
}

.inbox2-detail-participant {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.inbox2-detail-timestamp {
    font-size: 0.875rem;
    color: #999;
}

.inbox2-reply-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inbox2-reply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.inbox2-detail-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #34495e;
    white-space: pre-wrap;
    margin-bottom: 2rem;
}

.inbox2-messages-thread {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.inbox2-loading,
.inbox2-no-messages {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #7f8c8d;
    font-style: italic;
}

.inbox2-message-bubble {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.inbox2-message-theirs {
    background: #f0f2f5;
    border-left: 4px solid #95a5a6;
}

.inbox2-message-mine {
    background: #e8f4fd;
    border-left: 4px solid #3498db;
}

.inbox2-message-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.inbox2-message-from {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.85rem;
}

.inbox2-message-mine .inbox2-message-from {
    color: #2980b9;
}

.inbox2-message-theirs .inbox2-message-from {
    color: #7f8c8d;
}

.inbox2-message-time {
    color: #7f8c8d;
}

.inbox2-message-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
    white-space: pre-wrap;
}

.inbox2-reply-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.inbox2-reply-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.inbox2-reply-textarea {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.6;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.inbox2-reply-textarea:focus {
    outline: none;
    border-color: #667eea;
}

.inbox2-reply-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.inbox2-send-button {
    background: #667eea;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inbox2-send-button:hover {
    background: #5568d3;
}

.inbox2-cancel-button {
    background: transparent;
    color: #5a6c7d;
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.inbox2-cancel-button:hover {
    color: #2c3e50;
}

.inbox2-draft-label {
    display: inline-block;
    background: #ffd93d;
    color: #2c3e50;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.inbox2-draft-job-info {
    margin-bottom: 0.5rem;
}

.inbox2-draft-job-info .inbox2-detail-subject {
    margin-bottom: 0.25rem;
}

.inbox2-draft-job-label {
    font-size: 0.875rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.inbox2-draft-company-label {
    font-size: 0.875rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.inbox2-draft-company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3498db;
}

.inbox2-draft-form {
    display: flex;
    flex-direction: column;
    height: calc(100% - 120px);
}

.inbox2-draft-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.inbox2-draft-textarea {
    flex: 1;
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.6;
    resize: none;
    transition: border-color 0.2s ease;
    min-height: 200px;
}

.inbox2-draft-textarea:focus {
    outline: none;
    border-color: #667eea;
}

.inbox2-draft-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.inbox2-empty {
    background: white;
    padding: 1.25rem 3rem 3rem 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
}

.inbox2-already-applied {
    background: white;
    padding: 1.25rem 3rem 3rem 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.inbox2-already-applied-icon {
    font-size: 3rem;
}

.inbox2-already-applied-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #363636;
    margin: 0;
}

.inbox2-already-applied-text {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .inbox2-layout {
        grid-template-columns: 1fr;
        height: auto;
    }

    .inbox2-message-list {
        max-height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .inbox2-title {
        font-size: 2rem;
    }

    .inbox2-content {
        padding: 0 1rem;
    }

    .inbox2-detail {
        padding: 1.5rem;
    }

    .inbox2-detail-header {
        flex-direction: column;
        gap: 1rem;
    }

    .inbox2-detail-subject {
        font-size: 1.5rem;
    }
}