* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
html, body{
	height: 100%;
}
body{
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fafafa;
    color: #262626;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
	display: flex;
flex-direction: column;
	background-image: linear-gradient( to right, #f12711, #f5af19);
     scrollbar-width: thin;              /* auto | thin | none */
 /*  scrollbar-color: #888 #f1f1f1;      thumb color | track color */
}
body.no-scroll {
    overflow: hidden;
  }

/* Scrollbar globale */
::-webkit-scrollbar {
  width: 8px;
}

/* Track (fond) */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Thumb (barre) */
::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
  border: 3px solid transparent;
  background-clip: content-box;
}

/* Hover effet */
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}


a{
	color: #842029;
	text-decoration: none;
}
a:hover{
	color: #5a1118;
}

 .header {
    background-color: white;
    border-bottom: 1px solid #dbdbdb;
    padding: 8px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    flex-shrink: 0;
}
.header .logo {
    font-weight: bold;
    font-size: 1.5rem;
    white-space: nowrap;
}

  .footer {
    background-color: white;
    border-top: 1px solid #dbdbdb;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    flex-shrink: 0;
}
.icon {
font-size: 1.3rem;
min-width: 24px;
text-align: center;
color: #262626;
cursor: pointer;
transition: transform 0.2s;
}

.icon:hover {
transform: scale(1.1);
}

.icon-img-container {
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}

.icon-img {
width: 100%;
height: 100%;
object-fit: contain;
transition: transform 0.2s;
}

.icon-img:hover {
transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .header-icons {
        overflow-x: auto;
        white-space: nowrap;
        padding: 5px 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .header-icons::-webkit-scrollbar {
        display: none;
    }
    
    .icon {
        margin: 0 5px;
        font-size: 1.2rem;
    }
  }

    .notif-link {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  color: #333;
  font-weight: 500;
  padding: 10px 12px;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
}

.notif-link:hover {
  background-color: #f0f0f0;
  border-radius: 8px;
}

.notif-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #dc3545;
  color: white;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px white;
  animation: pulse-badge 1.5s infinite;
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.uf-form-signin {
    width: 100%;
    max-width: 350px;
    padding: 15px;
    margin: auto;
}

.uf-form-signup{
    width: 100%;
    max-width: 700px;
    padding: 15px;
    margin: auto;
}

.uf-input-group .input-group-text {
    background: #ffffff70;
    color: #f8f9fa;
    border: unset;
    font-size: 18px;
    padding: 15px;
    width: 50px;
}

.uf-input-group .form-control {
    border: unset;
    border-left: 1px solid #ffffff05;
    font-size: 16px;
    background: #ffffff70;
}

.uf-input-group .form-control:focus {
    box-shadow: unset;
    background: #ffffff;
}
.uf-btn-primary {
    background: #842029;
    color: #fff;
}

.uf-btn-primary:hover {
    background: #5a1118;
    color: #fff;
}

.uf-form-check-input:checked {
    background-color: #842029;
    border-color: #842029;
}

.uf-social-login .uf-social-ic+.uf-social-ic{
	margin-left: 15px;
}
.uf-social-ic{
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.uf-social-ic:hover{
	background: #842029;
}
.uf-social-ic:hover i{
	color: #fff;
}



