#internal-job-board {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ijb-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.ijb-header h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
}

.ijb-header p {
    margin: 0;
    opacity: 0.9;
}

.ijb-job-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.ijb-job-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ijb-job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.ijb-job-title {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.ijb-job-meta {
    display: flex;
    gap: 20px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.ijb-status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.ijb-status-active {
    background: #fef3c7;
    color: #92400e;
}

.ijb-status-closed {
    background: #e5e7eb;
    color: #6b7280;
}

.ijb-description {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ijb-requirements {
    margin: 20px 0;
}

.ijb-requirements h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.ijb-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ijb-requirements li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: #4b5563;
}

.ijb-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.ijb-skills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.ijb-skill-tag {
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.ijb-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4f46e5;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.ijb-apply-btn:hover {
    background: #4338ca;
    color: white;
}

.ijb-closed-msg {
    color: #9ca3af;
    font-style: italic;
}

@media (max-width: 768px) {
    .ijb-job-header {
        flex-direction: column;
    }
    
    .ijb-job-meta {
        flex-direction: column;
        gap: 8px;
    }
}