@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url(Home/index.css);
@import url(Ouvidoria/index.css);
@import url(FAQ/index.css);
@import url(Base/index.css);
@import url(404/styles.css);
@import url(Login/styles.css);
@import url(Admin/Painel/styles.css);

html,
body {
  max-width: 100vw !important;
  overflow-x: hidden;
}

.roboto{
  font-family: "Roboto", serif !important;
}

.centered{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  height: 80% !important;
  background-color: #001729;
}

#login-button {
  color: white !important;
}

.link-service-citizen {
  border: 1px solid !important;
  border-left: 5px #00B274 solid !important;
  background-color: white;
  color: #00B274 !important;
  margin-bottom: 0.3em;
}

.link-service-citizen:hover {
  background-image: linear-gradient(to right, #b20000, #009A90);
  color: white !important;
}

.section-title {
  color: #120a85 !important;
}

.map-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  /* Centraliza a div */
}

iframe {
  width: 100%;
  height: 250px;
  /* Altura do mapa */
  border: 0;
  border-radius: 8px;
  /* Cantos arredondados */
}

.error{
  height: 100vh !important;
  width: 100vw !important;
  background-color: #007FC5 !important;
  background-image: url('../../../storage/img/background/404.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Accessibility Widget Styles */
#accessibility-widget-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1050; /* Ensure it's above most elements */
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}

#accessibility-widget-toggle:hover {
    background-color: #0056b3;
}

#accessibility-widget-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: #f8f9fa;
    z-index: 1060; /* Higher than the toggle */
    box-shadow: 4px 0 10px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

#accessibility-widget-panel.active {
    transform: translateX(0);
}

#widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #e9ecef;
    border-bottom: 1px solid #dee2e6;
}

#widget-close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hidden {
    display: none !important;
}
