


.header ul, .footer ul{
    list-style: none;
}

.header ul li{
    display: inline-block;
    margin-left:5px;
}

.header ul li a, .footer ul li a{
    text-decoration:unset;
}

#dialog{
    position: fixed;
    top :15%;
    background-color: white;
    ;
    left:15%;
    overflow:auto;
    z-index: 10000;
    min-width: 60%;
    min-height:25%;
    transition-property: opacity;
    transition-duration: 1s;
    border-radius: 20px;
    box-shadow: 5px 5px 15px 5px grey;
    border:1px solid grey;
}

#rightDialog{
    position: fixed;
    top:0px;
    right:0px;
    width:400px !important;
    background-color: white;
    z-index:9999;
    height:calc(100%);
    overflow :auto;
    border-left:1px solid grey;
}

#leftDialog{
    position: fixed;
    top:0px;
    left:0px;
    width:400px !important;
    background-color: white;
    z-index:9999;
    height:calc(100%);
    border-right:1px solid grey;
    overflow :auto;
}

#fullDialog{
    position: fixed;
    top:0px;
    left:0px;
    width:100% ;
    background-color: white;
    z-index:9999;
    height:calc(100%);
    border-right:1px solid grey;
    overflow : auto;
}

#DialogTitle{
    color: white;
    padding :10px;
    top:0px;
    font-size: 15px;
    text-align: center;
    cursor: move;
}

#dialog #DialogContent{
    padding :15px;
    max-height: 800px;
    overflow:auto;
    filter: alpha(opacity='70');
}

#DialogRighContent .container{
    width:100% !important;
}

.dialogContent, #DialogTitle{
}

.dialogContent .link{
    font-size:14px;
}
#divResult {
    z-index: 10040;
    position: absolute;
    height: 200px;
    padding: 5px;
    border: 1px solid grey;
    border-radius: 6px 6px 6px 6px;
    overflow: auto;
    background: none repeat scroll 0 0 white;
}

#divResult ul {
    text-align: left;
}

.txtEditor{
    border:1px solid grey;
    width:100%;
    min-height: 150px;
}

.txtEditor .toolBar{
    border-bottom:1px solid grey;
    width:100%;
    min-height : 35px;
    padding:1px;
}

.txtEditor .toolBar div {
    display: inline-block;
    border : 1px solid #bebebe;
    border-radius: 5px;
    cursor: pointer;
    width :auto;
    padding:5px;
    text-align: center;
}

.txtEditor .inputArea{
    min-height:100px;
}

.txtEditor ul {
    padding:revert;
}

.txtEditor ul li{
    list-style: unset;
}

.txtEditor table tr td{
    border :1px solid grey;
    height:30px;
    width: 30px;
}

.mainContent {
    min-height: 69vh;
}

.width100{
    width:100%;
}

.center{
    text-align: center;
}

.marginTop{
    margin-top:10px;
}

.marginRight{
    margin-right:10px;
}

.info label{
    margin-right:10px;
    margin-left:10px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header .headerContainer {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    flex-wrap: nowrap;
    gap: 10px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.logo img {
    width: 60px;
    height: auto;
    border-radius: 6px;
}

/* ===== NAVIGATION ===== */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #ff4444;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.8);
}

/* ===== ICONES ET SELECT ===== */
.lang-select {
    color: #fff;
    padding: 5px 8px;
}

.shopCardIcon, .notifyMenu {
    position: relative;
    display: block;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
}

.cart-count, .notify-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ff2222;
    color: #fff;
    font-size: 12px;
    padding: 1px 5px;
    border-radius: 50%;
}

/* ===== MENU BURGER ===== */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .navbar {
        z-index: 10;
        position: fixed;
        top: 0px;
        right: -100%;
        background: var(--color-background-dark);
        width: 65%;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        transition: right 0.4s ease;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.6);
    }

    .navbar.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }

    .menu-toggle {
        display: block;
    }

    /* Ajustement : icônes à droite visibles en ligne */
    .header .headerContainer {
        flex-wrap: wrap;
        justify-content: space-between;
        padding-left:10px;
        padding-right:10px;
    }

    .lang-select,
    .shopCardIcon,
    .notifyMenu {
        order: 4;
        margin-top: 5px;
    }
}

.block-height-midlle{
    height:300px;
    margin:0px;
    margin-bottom:15px;
    overflow :auto
}

.block-height-hight{
    height:400px;
    margin:0px;
    margin-bottom:15px;
    overflow :auto
}


.breadCrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    color: white;
    color: white;
    padding : 10px;
    color:white;
    font-size: 18px;
    border-radius: 8px;
}

.breadCrumb li {
    display: inline-block;
    padding-right : 10px;
}

.breadCrumb  li::after {
    content: " /";
}

.breadCrumb li:last-child::after {
    content: "";
}


.positionBottom{
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    text-align: center;
}
date-box {
    display: inline-block;
    position: relative;
}
date-box input, time-box input{
    height: 34px;
    padding: 6px 12px;
    border: 1px solid #CFD8DC;
    border-radius: 4px;

}

date-box input {
    padding: 8px;
    font-size: 14px;
    width: 140px;
    color:black;
}

date-box .calendar {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: black;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 100;
}

date-box table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

date-box th {
    color: #555;
    font-size: 12px;
}

date-box td {
    cursor: pointer;
    padding: 4px;
}

date-box td:hover {
    background: #eee;
    border-radius: 4px;
}

date-box .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    position: absolute;
}

date-box button {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}


time-box {
    display: inline-block;
    position: relative;
    font-family: sans-serif;
}

time-box input {
    padding: 8px;
    font-size: 14px;
    width: 100px;
    cursor: pointer;
    color:black;
}

time-box input {
    padding: 8px;
    font-size: 14px;
    width: 140px;
}

time-box .time-picker {
    display: none; /* caché par défaut */
    position: absolute;
    top: 110%;
    left: 0;
    background: black;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    padding: 8px;
    z-index: 100;
}

time-box .time-picker div.selects {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 4px;
    color: black;
}

time-box .time-picker select {
    font-size: 14px;
    padding: 4px;
}

time-box .time-picker button {
    width: 100%;
    padding: 4px;
    border: none;
    background-color: #0078D4;
    color: black;
    border-radius: 4px;
    cursor: pointer;
}

time-box .time-picker button:hover {
    background-color: #005fa3;
}
tel-box .tel-box {
  display: flex;
  gap: 6px;
}

tel-box select,
tel-box input {
  padding: 6px;
  font-size: 14px;
   background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
