.jobs-wrapper {
    position: relative;
    min-height: 200px;
}

.job-panel {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.jobs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-panel {
    margin-bottom: 30px;
}

.job-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.company-info {
    font-size: 15px;
    color: #666;
    margin: 10px 0;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    color: #666;
}

.action-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.opportunity-text {
    color: #dc3545;
    font-weight: bold;
    margin-bottom: 15px;
}

.apply-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.apply-info {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-label {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.status-active {
    background: #28a745;
    color: white;
}

.status-warning {
    background: #ffc107;
    color: #000;
}

.status-expired {
    background: #dc3545;
    color: white;
}

.pagination-wrapper {
    margin-top: 30px;
}
