.odoo-jobs-container {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    color: #333;
}
.odoo-jobs-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.odoo-jobs-topbar h2 {
    margin: 0;
    font-size: 20px;
    color: #222;
    font-weight: 700;
}
.odoo-jobs-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.odoo-total-count {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}
.odoo-per-page-select {
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}
.odoo-per-page-select:focus {
    border-color: #1d4076;
}

.odoo-job-search-wrapper {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}
.odoo-job-search {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    font-size: 15px;
    color: #444;
    transition: box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    box-sizing: border-box;
}
.odoo-job-search:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.1);
}
.odoo-job-search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #888;
    cursor: pointer;
    display: none;
    line-height: 1;
    padding: 5px;
}
.odoo-job-search-clear:hover {
    color: #1d4076;
}

.odoo-job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.odoo-job-card {
    display: flex;
    flex-direction: column;
    padding: 25px 30px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    position: relative;
}
.odoo-job-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.odoo-job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
    gap: 20px;
}

.odoo-job-title {
    font-size: 20px;
    color: #1a202c;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.odoo-job-excerpt {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.odoo-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.odoo-read-more {
    display: inline-block;
    background: #1d4076;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.odoo-job-card:hover .odoo-read-more {
    background: #153059;
}

.odoo-job-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.odoo-job-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s;
}
.odoo-job-action-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}
.odoo-job-action-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Pagination Styles */
.odoo-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 45px;
    font-size: 14px;
}
.odoo-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}
.odoo-page-link:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
.odoo-page-link.active {
    background: #1d4076;
    border-color: #1d4076;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(29, 64, 118, 0.2);
}
.odoo-page-dots {
    color: #94a3b8;
    font-weight: bold;
}

.odoo-no-results {
    padding: 40px;
    text-align: center;
    color: #64748b;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
}
#odoo-jobs-loader {
    text-align: center;
    display: none;
    padding: 40px;
    color: #94a3b8;
    font-size: 16px;
}

@media (max-width: 600px) {
    .odoo-job-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
