/*
 * Styles pour WP Wegestu Connector
 */

.wpc-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.wpc-table th, .wpc-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.wpc-table th {
    background-color: #f8f8f8;
    color: #333;
    font-size: 0.9em;
    text-transform: uppercase;
}

.wpc-logo-col img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.wpc-esn-tag {
    background-color: #5bc0de; /* Bleu clair */
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    display: inline-block;
}

/* Styles pour la page de détails */
.wpc-job-detail-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.wpc-sidebar {
    flex: 1;
    background-color: #f4f7f9;
    border-radius: 8px;
    padding: 20px;
}

.wpc-main-content {
    flex: 2;
}

.wpc-company-info {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.wpc-details-list dt {
    font-weight: bold;
    color: #666;
    padding-top: 10px;
}

.wpc-details-list dd {
    margin-left: 0;
    padding-bottom: 5px;
    border-bottom: 1px dashed #eee;
}

.wpc-details-list .dash {
    color: #aaa;
}

.wpc-categories-box {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 20px;
    display: flex;
}

.wpc-categories-box > div {
    flex: 1;
}

.wpc-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wpc-category-list li {
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
    margin: 0;
}

.wpc-category-list li:last-child {
    border-bottom: none;
}

.wpc-category-list .label {
    background-color: #ffe5cc; /* Exemple de couleur pour le label */
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    margin-bottom: 5px;
}
.wpc-job-single-wrapper {
    margin: auto;
    width: 80%;
}
.wpc-table a.button {
    border: 1px solid;
    border-radius: 5px;
    padding: 12px 25px;
    font-size: 1em;
    border-color: var(--primary);
    background-color: var(--primary);
    color: #fff !important;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s 
linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s 
linear;
    -o-transition: all 0.3s linear;
}