.cdl-jobs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.cdl-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.cdl-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.cdl-search-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cdl-search-filters input,
.cdl-search-filters select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex: 1;
    min-width: 200px;
}

.cdl-main-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.cdl-post-section,
.cdl-jobs-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.cdl-post-section h3,
.cdl-jobs-section h3 {
    color: #e53e3e;
    margin-bottom: 10px;
}

.cdl-post-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cdl-post-section input,
.cdl-post-section textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cdl-post-section textarea {
    min-height: 100px;
    resize: vertical;
}

.cdl-post-section button {
    background: #e53e3e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#jobs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.job-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    position: relative;
}

.job-card h4 {
    color: #e53e3e;
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.job-company {
    font-weight: bold;
    margin-bottom: 5px;
}

.job-location {
    color: #666;
    margin-bottom: 10px;
}

.job-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.job-pay {
    font-weight: bold;
}

.job-type {
    color: #666;
}

.job-posted {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.apply-btn {
    background: #e53e3e;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.see-all-jobs {
    text-align: center;
    display: block;
    color: #666;
    text-decoration: underline;
}

.grid-jobs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.grid-job-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    min-height: 180px;
}

.grid-job-card h4 {
    color: #e53e3e;
    font-size: 1.1em;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.grid-company {
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
}

.grid-location {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 12px;
}

.grid-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.grid-pay {
    font-weight: bold;
    color: #333;
}

.grid-type {
    color: #666;
    font-size: 0.9em;
}

.grid-posted {
    color: #999;
    font-size: 0.85em;
    margin-bottom: 15px;
}

.grid-apply-btn {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

@media (max-width: 768px) {
    .cdl-main-content {
        grid-template-columns: 1fr;
    }
    
    .cdl-search-filters {
        flex-direction: column;
    }
    
    #jobs-list {
        grid-template-columns: 1fr;
    }
    
    .grid-jobs {
        grid-template-columns: 1fr;
    }
}