#career-job-detail .job-content {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

#career-job-detail .job-content p {
    text-align: left;
    margin-bottom: 20px;
}

/* Job Detail Page Styles */
#career-job-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#career-job-detail ul {
    margin: 15px 0;
    padding-left: 20px;
}

#career-job-detail li {
    margin-bottom: 10px;
    line-height: 1.6;
}

#career-job-detail .job-content {
    text-align: left;
}

#career-job-detail h1 {
    font-size: 2.5em;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

#career-job-detail h2 {
    font-size: 1.5em;
    color: #333;
    font-weight: 600;
    margin: 30px 0 15px 0;
    text-align: left;
}

.apply-btn {
    background: #000;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin: 20px 0;
    display: inline-block;
}

#career-job-detail p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: left;
}

#career-job-detail strong {
    color: #333;
}

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

#career-board h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
    font-weight: 600;
}

#positions-list {
    display: block;
    width: 100%;
}

.position-item {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 32px 0;
    background: #fff;
    transition: background-color 0.2s;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.position-item:hover {
    background-color: #f9fafb;
}

.position-item:last-child {
    border-bottom: none;
}

.position-content {
    flex: 1;
}

.position-header {
    margin-bottom: 12px;
}

.category {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid;
    margin-bottom: 12px;
}

.category.software-engineering {
    color: #ef4444;
    border-color: #ef4444;
    background: transparent;
}

.category.other {
    color: #3b82f6;
    border-color: #3b82f6;
    background: transparent;
}

.position-item h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    color: #111827;
    font-weight: 600;
    line-height: 1.3;
}

.position-meta {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.position-arrow {
    color: #9ca3af;
    font-size: 20px;
    margin-left: 16px;
    transition: transform 0.2s, color 0.2s;
}

.position-item:hover .position-arrow {
    color: #374151;
    transform: translateX(4px);
}

.position-description {
    display: none;
}

.apply-button {
    display: none;
}



.no-positions, .error {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

.error {
    color: #d63384;
}

@media (max-width: 768px) {
    #career-board {
        padding: 15px;
    }

    .position-item {
        padding: 20px;
    }

    .position-item h3 {
        font-size: 1.2em;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

#career-board {
	.position-item h3,
	.position-header{
		text-align: left !important;
	}
}