/* Custom Bootstrap Overrides */
:root {
    --bs-primary: #4a6bdf;
    --bs-primary-rgb: 74, 107, 223;
    --bs-primary-light: #f0f4ff;
    --bs-danger: #dc3545;
    --bs-success: #28a745;
    --bs-warning: #ffc107;
}

/* Custom Styles */
.bg-primary-light {
    background-color: var(--bs-primary-light);
}

.breadcrumb {
    padding: 0.5rem 0;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--bs-primary);
}

/* Job Header */
.job-header {
    position: relative;
}

.job-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Job Highlights */
.highlight-item {
    transition: transform 0.2s;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

/* Benefits Grid */
.benefit-item {
    transition: all 0.2s;
}

.benefit-item:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

/* Similar Jobs */
.list-group-item-action:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

/* Application Process */
.process-step {
    transition: all 0.2s;
}

.process-step:hover {
    transform: translateY(-3px);
}

/* Tooltips */
.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .job-header {
        flex-direction: column;
    }
    
    .company-logo {
        margin-bottom: 1rem;
    }
    
    .job-actions {
        margin-top: 1rem;
    }
    
    .job-content {
        flex-direction: column;
    }
    
    .job-description {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}