body.arabic {
    direction: rtl;
}

html[data-placement=vertical][data-behaviour=unpinned] body.arabic main  {
    padding-right: calc(var(--main-spacing-horizontal) + var(--nav-size-slim));
    padding-left: var(--main-spacing-horizontal);
}


html[data-placement=horizontal] .nav-container .logo img {
    width: 160px;
}

html[data-placement=vertical][data-behaviour=unpinned]:not([data-menu-animate=show]) .nav-container .nav-content .logo a {
    width: 53px;
}

html[data-placement=vertical] .nav-container .logo img {
    width: 96px;
    min-height: 24px;
}

.menu-container .label, .user-container .name {
    font-size: 16px;
}


.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* Espace entre le logo et le texte */
  background-color: #ffffff;
  color: #1f1f1f;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 24px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* Effet au survol */
.btn-google:hover {
  background-color: #f8f9fa;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
  border-color: #d2e3fc;
}

/* Taille de l'icône */
.google-icon {
  width: 20px;
  height: 20px;
}