body{
    margin: 0;
    padding: 0;
    background-color: rgb(250,250,255);
    font-family: "Montserrat", sans-serif;
    color: rgb(73, 73, 73)!important;
}

*, *::before, *::after {
    box-sizing: border-box;
}

header{
    background-color: white;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid rgb(72, 191, 212)
}

h2, h1, h3, h4, p{
    margin: 0!important;
}

.no-hover-btn:hover{
	background-color: transparent;
	color: white;
}	
header .profil{
    display:flex;
    align-items: center;
    border: 1px solid rgb(216, 216, 216);
    padding: 10px;
    border-radius: 10px;
    background-color: rgb(248, 248, 248);
    cursor:pointer;
}

header .profil:hover{
    background-color: rgb(240, 240, 240);
}

header .profil .logo{
    background: linear-gradient(45deg, rgb(224, 101, 214), rgb(212, 135, 72));
    width: 40px;
    height: 40px;
    color: white;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    display:flex;
    border-radius: 10px;
    margin-right: 5px;
}

.menus{
    display: flex;
    background-color: white;
}

.menus a{
    color: rgb(73, 73, 73);
    text-decoration: none;
    padding: 15px 30px;
}

.page_actuel{
    border-bottom: 1px solid rgb(72, 191, 212);
}

.menus a:hover{
    background-color: rgb(248, 248, 248);
    border-bottom: 1px solid rgb(72, 191, 212);
}


.content-list{
    display:grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    margin: 10px 0;
    
}

.content-card{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border-radius: 15px;
    transition: 0.4s;
}

.content-card:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.content-page{
    padding: 30px 100px;
}

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

.positif{
    color: rgb(91, 211, 117)!important;
    font-weight: bold;
    font-size: 1.2em;
}

.negatif{
    color: rgb(211, 91, 91)!important;
    font-weight: bold;
    font-size: 1.2em;
}

.content-card a{
    color: rgb(73, 73, 73);
    text-decoration: none;
}

.content-card a:hover{
    text-decoration: underline;
}

.card-header{
    margin: 10px 0;
}

.border-bottom-grey{
    border-bottom: 1px solid grey;
}

.mt20{margin-top:20px!important;}
.mb20{margin-bottom:20px;}
.mt10{margin-top:10px;}
.ml20{margin-left:20px;}

.pb10{padding-bottom:10px;}


table tr:hover{
	background-color: rgb(250,250,250)!important;
}

.table2{
    width: 100%;
    border-collapse: collapse;
}

.table2 td, .table2 th{
    text-align: center;
}

.table2 td{
    padding: 15px 10px;
}

.table2 th{
    padding-top: 10px;
}

.table2 tbody td{
    border-bottom: 1px solid rgb(167, 167, 167);
}

/* .table2 thead{
    background-color: rgba(155, 197, 204, 0.164);
} */



.form-control{
    border: 1px solid rgb(163, 163, 163);
}

.form-select{
    border: 1px solid rgb(163, 163, 163);
} 

.depense{
    background-color: rgba(211, 91, 91, 0.103)!important;
}

.revenu{
    background-color: rgba(91, 211, 117, 0.089)!important;
}

.aa{
    text-decoration: none;
    color: rgb(73, 73, 73);
}

.aa:hover{
    text-decoration: underline;
}

.btn2{
    padding: 10px 14px;
    border-radius: 7px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    border: none;
    font-size: 1em;
    cursor: pointer;
}

.pink{
    color: white !important;
    background-color: rgb(224, 101, 214);
}

.btn2:hover{
    text-decoration: none!important;
}

.pink:hover{
    background-color: rgb(204, 94, 195);
}

.dflex{
    display:flex;
}

.dflex-gap{
    display:flex;
    gap: 20px;
    margin: 10px 0;
}

.justif-end{
    justify-content: end;
}

.card-footer{
    margin: 10px 0 0 0;
}

.justif-between{justify-content: space-between;}

.col-md-2{
    width: 16.6666%;
}

.col-md-4{
    width: 33.3333%;
}

.col-md-3{
    width: 25%;
}

.col-md-6{
    width: 50%;
}

.col-md-8{
    width: 66.6666%;
}
.form-label{
    font-size: 1em;
    color: rgb(58, 64, 83);
    font-weight: 600;
}

.custom-file-bootstrap {
    
    width: 100%;
    cursor: pointer;
}

.custom-file-bootstrap .form-file{
    width: 100%!important;
    padding: 3px 6px;
    border: 1px solid rgb(163, 163, 163);
    display: inline-block;
    height: 33.6px;
}

.custom-file-bootstrap .form-file.selected {
  color: #212529;
}

.success{
    background-color: rgb(83, 182, 104)!important;
    color: white !important;
    text-decoration: none!important;
}

.success:hover{
    background-color: rgb(74, 161, 92)!important;
    text-decoration: none!important;
}

.danger{
    background-color: rgb(182, 83, 83)!important;
    color: white!important;
    text-decoration: none!important;
}

.outline-danger{
    background: none;
    border: 1px solid rgb(182, 83, 83)!important;
    color: rgb(182, 83, 83)!important;
    text-decoration: none!important;
}

.outline-danger:hover{
    background-color: rgb(182, 83, 83)!important;
    color: white!important;
    text-decoration: none!important;
}

.danger:hover{
    background-color: rgb(156, 71, 71)!important;
    text-decoration: none!important;
}

.warning{
    background-color: rgb(182, 156, 83);
    color: white;
}

.warning:hover{
    background-color: rgb(153, 131, 69);
}

.align-center{
    align-items:center;
}

.mr10{margin-right: 10px;}

.btn-primary{
    color:white!important;
    text-decoration: none;
}

.btn-primary:hover{
    text-decoration: none!important;
}

.outline-primary{
    background: none;
    border: 1px solid rgb(61, 161, 179)!important;
    color: rgb(61, 161, 179)!important;
    text-decoration: none!important;
}

.outline-primary:hover{
    background-color: rgb(61, 161, 179)!important;
    color: white!important;
    text-decoration: none!important;
}

.roles-collection {
    background: #f8f9fa;
}

.role-item {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.photo{
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, rgba(187, 79, 190, 1), rgba(204, 150, 50, 1));
    display:flex;
    flex-direction:column;
    align-items:center;
    overflow: hidden;
    border-radius: 50%;
}

.photo .tete{
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.photo .corps{
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.table3 td, .table3 th{
    padding: 9px;
}

.desactive td{
	background-color: rgb(245, 245, 245);
}
