﻿.margin-left-10 {
    margin-left: 10px;
}

margin-right-10{
    margin-right: 10px;
}

.grid-container {
    width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: auto;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 10px
}

.grid-header {
    display: grid;
    grid-template-columns: 72% 14% 14%;
    font-weight: bold;
}

.grid-header-filtre {
    display: grid;
    grid-template-columns: 72% 14% 14%;
    font-weight: bold;
}

.grid-item {
    display: grid;
    grid-template-columns: 72% 14% 14%;
    padding: 0.25rem;
}

.page-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem;
}

.pagination-content {
    display: flex;
    align-items: center;
}

.BackgroundGris {
    background-color: #FFFFFF
}

.BackgroundBlanc {
    background-color: #FFFFFF
}

.BackgroundBlanc:disabled {
    background-color: #EEEEEE;
}

.BackgroundGris:disabled {
    background-color: #EEEEEE;
}


.icon {
    margin-left: 10px;
    cursor: pointer;
}

.icon-recherche {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.icon-filter {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.button-container-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.btn-fixed-width {
    width: 350px;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.input-avec-border {
    border: 1px solid lightgrey;
   
}


.custom-select {
    position: relative;
    width: 100%;
}

.custom-select select {
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="none" stroke="%23343a40" stroke-width=".5" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>') no-repeat right .75rem center/8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: #fff;
    background-clip: padding-box;
}

.custom-select select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

