/* Thiam Services - Style minimaliste basé sur Bootstrap avec thème bleu */

:root {
    /* Couleurs Thiam Services (bleu du logo) */
    --thiamservices-primary: #005f8f;
    --thiamservices-primary-dark: #004d7a;
    --thiamservices-primary-light: #e8f4f8;
}

/* Police Inter pour cohérence */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Boutons primaires en bleu Thiam Services */
.btn-primary {
    background-color: var(--thiamservices-primary);
    border-color: var(--thiamservices-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--thiamservices-primary-dark);
    border-color: var(--thiamservices-primary-dark);
}

.btn-outline-primary {
    color: var(--thiamservices-primary);
    border-color: var(--thiamservices-primary);
}

.btn-outline-primary:hover {
    background-color: var(--thiamservices-primary);
    border-color: var(--thiamservices-primary);
}

/* Liens en bleu Thiam Services */
a {
    color: var(--thiamservices-primary);
}

a:hover {
    color: var(--thiamservices-primary-dark);
}

/* Nav links actifs */
.nav-link.active,
.navbar-nav .nav-link.active {
    color: var(--thiamservices-primary) !important;
}

/* Focus states */
.form-control:focus,
.form-select:focus {
    border-color: var(--thiamservices-primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 95, 143, 0.25);
}

/* Badges et backgrounds */
.bg-primary {
    background-color: var(--thiamservices-primary) !important;
}

.text-primary {
    color: var(--thiamservices-primary) !important;
}

/* Bordures */
.border-primary {
    border-color: var(--thiamservices-primary) !important;
}

/* Tables - style Bootstrap standard */
.table thead th {
    font-weight: 600;
    border-bottom-width: 2px;
}

/* Cards - style Bootstrap standard avec légère ombre */
.card {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.375rem;
}

/* Pagination */
.page-link {
    color: var(--thiamservices-primary);
}

.page-item.active .page-link {
    background-color: var(--thiamservices-primary);
    border-color: var(--thiamservices-primary);
}

/* Dropdown */
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--thiamservices-primary);
}

/* Progress bars */
.progress-bar {
    background-color: var(--thiamservices-primary);
}

/* List group */
.list-group-item.active {
    background-color: var(--thiamservices-primary);
    border-color: var(--thiamservices-primary);
}

/* Arrival color indicator */
.arrival-color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Arrival receive item sections */
.arrival-receive-item {
    border-left: 4px solid var(--thiamservices-primary);
    padding: 0.75rem;
    background: #fff;
    transition: border-color 0.2s;
}

.arrival-receive-item:hover {
    background: #f8f9fa;
}