.btn-add {
	margin-right: 30px;
	margin-bottom: 50px;
}

.nav-pills .nav-link {
    background-color: #f4f6f9; /* gris clair */
    color: #000; /* texte noir ou adapte selon ton thème */
}

.nav-pills .nav-link.active {
    background-color: #22c55e; /* couleur Bootstrap primaire pour l'onglet actif */
    color: #fff; /* texte blanc */
}

.input-readonly {
  pointer-events:none;
}

.badge-lg {
    font-size: 0.9rem;        /* texte plus grand */
    padding: 0.6em 0.9em;   /* plus d’espace interne */
}

.total-cbm {
	font-size: 115%; 
	text-align: right;
	font-weight: bold;
}

.col-centered {
    float: none;
    margin: 0 auto;
}

.div-center {
    text-align: center !important;
}

.div-left {
	float:left !important;
}

.div-right {
	float:right !important;
	/*border: 1px solid black;*/
}

.debug {
    border: 1px solid black;
}

.float-right {
	float: right;
	margin-bottom: 30px;
}

.element-inline-left {
	display: block-inline;
	float:left;
	/*border-left: 20px;*/
}

.element-inline-right {
	display: block-inline;
	float:right;
	margin-left: 5px;
}

.label-right {
	text-align: right;
}

.title-po-list {
	margin-top: 70px;
}

.slt-format {
	margin-left: 40px;
}

.margin-top-10 {
	margin-top: 10px;
}

.margin-top-20 {
	margin-top: 20px !important;
}

.margin-bottom-20 {
	margin-bottom: 20px !important;
}

.margin-bottom-10 {
	margin-bottom: 10px;
}

.margin-left-10 {
	margin-left: 10px;
}

.margin-left-40 {
	margin-left: 40px;
}

.margin-right-10 {
	margin-right: 10px;
}

.text-align-right {
	text-align: right;
}

.text-align-left {
	text-align: left;	
}

.custom-pagination {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.custom-pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

/* Style au survol */
.custom-pagination a:hover {
    background-color: #f5f5f5;
}

/* Style pour la page active */
.custom-pagination a.active {
    background-color: #22c55e;
    color: white;
    border-color: #22c55e;
}

/* Styles spécifiques pour les boutons */
.custom-pagination a.first,
.custom-pagination a.last {
    background-color: #f8f9fa;
}

.custom-pagination a.prev,
.custom-pagination a.next {
    background-color: #e9ecef;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-pagination {
        flex-direction: column;
        align-items: center;
    }
    .custom-pagination a {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}