@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
    
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
/* Top-bar */
.top-bar{
  height: 80px;
  flex-direction: row;
    padding-left: 20px ;
    padding-right: 20px;
    display: flex;
    width: 100%;
    background-color:rgb(0, 105, 150);
    justify-content: space-between;
}
.locatie-program{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: auto;
    flex-direction: row;
}
.programare{
    color: white;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 50%;
    height: auto;
}
.program-box{
  z-index: 1;
    transition: background-color 0.3s, opacity 0.3s; /* Tranziția pentru hover */
    color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 13px;
}
.program-box:hover {
  z-index: 2;
    background-color: rgb(28, 198, 255); /* Fundal transparent la hover */
    opacity: 0.5; /* Opacitate scăzută la hover */
}

.vertical-line {
    width: 1px; /* Grosimea liniei */
    background-color: rgb(0, 144, 192); /* Culoarea liniei */
    height: 100%; /* Înălțimea liniei pentru a se întinde pe toată înălțimea elementului părinte */
    margin: 0 10px; /* Spațiu între elementele program-box și linia verticală */
}
.p-icon{
  height: 37.5px;
  width: 37.5px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  border-radius: 100%;
  background-color: rgb(0, 144, 192);
    color: rgb(255, 255, 255);
    padding: 3px;
    font-size: 25px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.programeaza-te{
    background-color: rgb(0, 144, 192);
    margin-left: 50px;
    display: flex;
    border-radius: 40px;
}
.programeaza-te a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 10px 20px; /* Adaugă padding pentru a arăta ca un buton */
    border-radius: 40px; /* Colțuri rotunjite pentru buton */
    display: inline-block; /* Asigură-te că padding-ul și bordura sunt aplicate corect */
    transition: background-color 0.3s, color 0.3s; /* Tranziție lină pentru efectul de hover */
}

.programeaza-te a:hover {
  padding: 10px 20px; /* Adaugă padding pentru a arăta ca un buton */
  border-radius: 40px;
    background-color: rgb(0, 135, 193); /* Fundal colorat la hover */
    color: white; /* Text alb la hover */
}
@media screen and (max-width: 790px) {
  .top-bar{
    display: none;
  }  
}

.social-icons{
    color: rgb(55, 205, 255);
    width: 500px;
    display: flex;
    margin: auto;
    align-items: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    font-size: 35px;
}
.social-icons a{
    margin: 10px;
    color: rgb(255, 255, 255);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
/* Dropdown Styles */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  padding: 12px 16px;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropbtn:hover {
  background-color: #ddd;
}
/* Top-bar */
nav {
    background-color: transparent;
  padding: 35px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  z-index: 1;
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  height: 25px;
  width: auto;
  margin-right: 10px;
}
nav .logo h1 {
  font-size: 1.1rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
    text-decoration: none;
    color: rgb(0, 105, 150);
    font-size: 120%;
    font-weight: 400;
    padding: 4px 8px;
    position: relative;
    border-radius: 5px;
    transition: color 0.35s;
}
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: rgb(0, 105, 150);
    transition: width 0.3s ease-in-out;
  }
  
  nav ul li a:hover::after {
    width: 100%;
  }
  
  nav ul li a:hover {
    color: #000;
  }

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #1f1f1f;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 2;
}
.active {
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
  nav ul {
    display: none;
  }
}

/* Imagini reclama */
.container {
    margin: 20px 100px 30px 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .box {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 200px;
    overflow: hidden;
  }
  
  .box img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    transition: opacity 0.3s ease;
  }
  
  .box:hover .overlay {
    opacity: 1;
  }
  
  @media screen and (max-width: 600px) {
    .container {
      align-items: center;
      justify-content: center;
      justify-items: center;
      align-content: center;
      display: flex;
      flex-wrap: wrap;
      margin: auto; /* Margini reduse pentru dispozitivele mobile */
    }
    .box {
      box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
      position: relative;
      width: 100%;
      max-width: 175px;
      height: 100px;
      overflow: hidden;
    }
    .numardetelefon{
      display: none;
    }
  }
  .box:hover .price {
    opacity: 1;
  }
  
  .box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0); /* Transparent la început */
    transition: background-color 0.3s ease;
  }
  
  .box:hover::after {
    background-color: rgba(0, 0, 0, 0.5); /* Opac la hover */
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* Counting */
  .counting-numb{
    margin-bottom: 15px;
    background-color: #0086c0;
    color: #fff;
    font-family: "Roboto Mono", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
  }
  .counter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 30px 120px;
  }
  .text-counter{
    font-size: 30px;
  }
  .counter {
    font-size: 60px;
    margin-top: 10px;
  }
  
  @media (max-width: 580px) {
    .counting-numb {
        flex-direction: row;
    }
    .counter-container {
        margin: 10px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .counter {
        font-size: 20px;
        margin-top: 5px;
    }
    svg {
        width: 25px;
        height: 25px;
    }
    span {
        font-size: 20px;
    }
    .text-counter{
      font-size: 15px;
    }
}
  .section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7; /* Reduce visibility of the image */
}

.image-overlay .overlay-i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 91, 188, 0.5); /* Alabaster color overlay */
}
.text-content a{
  background-color: rgb(1, 108, 154);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  text-decoration: none;
    color:  rgb(255, 255, 255);
    padding: 10px 20px; /* Adaugă padding pentru a arăta ca un buton */
    display: inline-block; /* Asigură-te că padding-ul și bordura sunt aplicate corect */
    transition: background-color 0.3s, color 0.3s; /* Tranziție lină pentru efectul de hover */
}

.text-content a:hover{
  background-color: rgb(1, 108, 154); /* Fundal colorat la hover */
    color: white; /* Text alb la hover */
}

.image-overlay .text-content {
    position: absolute;
    top: 20%;
    left: 10%;
    color: white;
    max-width: 500px;
}

@media (max-width: 768px) {
    .image-overlay .text-content {
        top: 10%;
        left: 5%;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .image-overlay .text-content {
        top: 5%;
        left: 5%;
        max-width: 90%;
    }
}
/* General Styles */
.footer{
  background:rgb(1, 108, 154);
  font-family: 'Play', sans-serif;
  text-align:center;
  }
  
  .footer .row{
    font-family: sans-serif, 'Poppins';
  width:100%;
  margin:1% 0%;
  padding:0.6% 0%;
  color:rgb(255, 255, 255);
  font-size:1em;
  }
  
  .footer .row a{
  text-decoration:none;
  color:rgb(255, 255, 255);
  transition:0.5s;
  }
  
  .footer .row a:hover{
  color:#fff;
  }
  
  .footer .row ul{
  width:100%;
  }
  
  .footer .row ul li{
  display:inline-block;
  margin:0px 30px;
  }
  
  .footer .row a i{
  font-size:2em;
  margin:0% 1%;
  }
  
  @media (max-width:720px){
  .footer{
  }
  .footer .row ul li{
  display:block;
  margin:10px 0px;
  text-align:left;
  }
  .footer .row a i{
  margin:0% 3%;
  }
  }
  .section-title {
    margin-left: 30px;
    margin-bottom: 30px;
    position: relative; /* Este necesar pentru a poziționa linia subtitlului */
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; /* Ajustează înălțimea liniei în funcție de preferințele tale */
    width: 100%;
    height: 2px; /* Grosimea liniei */
    background-color: rgb(1, 108, 154); /* Culoarea albastru deschis */
    transition: width 0.3s ease; /* Efect de tranziție pentru animație */
  }
  
  .section-title:hover::after {
    width: 50%; /* Lungimea la care se va extinde linia când se plasează cursorul pe titlu */
  }
  /* Program cabinet*/
  .schedule{
    margin-top: 20px;
    border-radius: 12px ;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    flex-wrap: wrap;
    color: rgb(1, 108, 154);
    background-color:rgb(245, 245, 245);
  }
  .schedule-table{
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
  }
  .p{
    font-size: 15px;
    border-radius: 10px;
    color: white;
    background-color: #0086c0;
    padding: 10px;
    margin: 10px;
  }
    /* Program cabinet*/
    /* Form program */
    .contactForm {
      margin: auto;
      justify-content: center;
      align-items: center;
      max-width: 1500px;
      background-color: #0086c0;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: row;
      align-items: center;
    }

    .contactForm iframe {
      width: 100%;
      height: 500px;
      border: none;
      margin-bottom: 20px;
    }

    .contact-text {
      padding: 15px;
      align-items: center;
      justify-content: center;
      margin: auto;
      font-family: "Poppins", sans-serif;
      width: 100%;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .contact-text label {
      display: flex;
      width: 100%;
      margin-bottom: 5px;
      color: white;
    }
    .form-tit{
      color: white;
      font-family: sans-serif, "Poppins";
      letter-spacing: 2px;
      font-size: 30px;
    }
    .contact-text input,
    .contact-text textarea {
      font-family: "Poppins", sans-serif;
      width: 100%;
      max-width: 500px;
      padding: 10px;
      border: 2px solid transparent;
      background-color: #ffffff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease-in-out;
    }

    .contact-text textarea {
      height: 100px;
      resize: none;
    }

    .contact-text input:focus,
    .contact-text textarea:focus {
      border-color: #005f8a;
      box-shadow: 0 0 10px rgba(0, 134, 192, 0.5);
      outline: none;
      transform: scale(1.05);
    }

    .contact-text input::placeholder,
    .contact-text textarea::placeholder {
      color: rgba(0, 0, 0, 0.5);
    }

    .send .checkbox-1{
      font-size: 7px;
      width: auto;
      box-shadow: none;
    }
    .send .checkbox-1 label {
      display: flex;
      font-size: 7px;
      margin: auto;
      justify-content: center;
      align-items: center;
    }
    .send {
      display: flex;
      flex-direction: column;
      width: 500px;
      text-align: center;
    }

    .send label {
      color: white;
    }

    .send input[type="checkbox"] {

    }

    .send button {
      margin: auto;
      justify-self: center;
      align-items: center;
      width: 120px;
      height: 40px;
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #005f8a;
      border: none;
      border-radius: 25px;
      color: white;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .send button:hover {
      background-color: #004568;
    }

    @media (max-width: 600px) {
      .contactForm{
        padding: 0px;
        flex-direction: column-reverse;
        display: flex;
        flex-wrap: wrap;
      }
      .contactForm iframe {
        height: 200px;
        width: 360px;
      }
      .send {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
      }

      .contact-text input,
      .contact-text textarea {
        display: flex;
        font-family: "Poppins", sans-serif;
        width: 100%;
        max-width: 360px;
        padding: 10px;
        border: 2px solid transparent;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        max-width: 100%;
      }
      .contact-text{
        pad: 20px;
      }
      .informatii img{
        margin: auto;
        width: 380px;
      }
      .informatii{
        flex-wrap: wrap;
        display: flex;
        flex-direction: column-reverse;
      }
    }
     /* Form program */
     /* informatii suplimentare */
     .informatii{
      align-items: center;
      justify-content: center;
      align-self: center;
      margin: auto;
      display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    height: auto;
     }
     .informatii img{
      justify-content: center;
      align-items: center;
      align-self: center;
      padding: 20px;
      display: flex;
      flex-wrap: wrap;
     }
     .info-sup{
      margin-left: 100px;
      max-width: 600px;
      flex: 1 1 50%;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      padding: 20px;
     }
     .info-gif{
      width: 130px;
     }
     .info-contact{
      padding: 10px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row-reverse;
     }
     .info-info{
      display:flex;
      flex-wrap: wrap;
      flex-direction: column;
     }
     .info-text{
      margin: 10px;
      flex-wrap: wrap;
      flex-direction: column;
      display: flex;
     }
     .info-text a{
      text-decoration: none;
      color: #0086c0;
     }
     .buton-info a{
      width: 300px;
      height: 40px;
      border-radius: 12px;
      background-color: #0086c0;
      text-decoration: none;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
     }
     @media (max-width: 600px) {
      .info-sup{
        margin-left: 0px;
      }
     }
     /* informatii suplimentare */
     .google-review {
      display: flex;
      margin: auto;
      justify-content: center;
      align-items: center;
     }
     .google-review img{
      display: flex;
      margin: auto;
      justify-content: center;
      align-items: center;
      height: 175px;
     }
     .google-review {
      cursor: pointer; /* Schimbă cursorul pentru a arăta că este ceva pe care se poate da click */
    }
    .carousel-container {
      padding: 20px;
      margin: auto;
      justify-content: center;
      align-items: center;
      position: relative;
      width: auto;
      max-width: 1300px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
  .carousel-item img{
    border-radius: 20px;
  }
  .carousel {
      display: flex;
      transition: transform 0.5s ease-in-out;
  }
  
  .carousel-item {
      padding: 20px;
      background-color: #fff;
      text-align: center;
  }
  .testimonial-text {
      font-size: 18px;
      margin-bottom: 10px;
      color: #333;
  }
  
  .testimonial-author {
      font-size: 16px;
      color: #666;
  }
  
  .carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 10px;
      cursor: pointer;
  }
  
  .carousel-button.prev {
      left: 10px;
  }
  
  .carousel-button.next {
      right: 10px;
  }
  
  .carousel-button:focus {
      outline: none;
  }
  .c-img{
    width: 330px;
    height: 330px;
  }
  
  @media (max-width: 600px) {
    .carousel-container {
      padding: 20px;
      margin: auto;
      justify-content: center;
      align-items: center;
      position: relative;
      width: auto;
      max-width: 900px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
  
  .carousel {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: 100%;
  }
  
  .carousel-item {
      min-width: 100%;
      box-sizing: border-box;
      background-color: #fff;
      text-align: center;
      padding: 20px;
  }
  
  .carousel-item img {
      border-radius: 20px;
      width: 100%;
      height: auto;
  }
  
  .carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 10px;
      cursor: pointer;
  }
  
  .carousel-button.prev {
      left: 10px;
  }
  
  .carousel-button.next {
      right: 10px;
  }
  
  .carousel-button:focus {
      outline: none;
  }
  
  @media (max-width: 600px) {
      .carousel-item {
          padding: 10px;
      }
  
      .carousel-button {
          padding: 5px;
      }
  }
  
  }
  .panel-group {
    width: 80%;
    margin: auto;
    max-width: 800px;
}

.panel {
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.panel-header {
  color: white;
    width: 100%;
    background-color: #0086c0;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.panel-header:hover {
    background-color: #00b3ff;
}

.panel-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.panel-content p {
    margin: 10px 0;
}

.panel-content.open {
    max-height: 500px; /* Large enough to accommodate the content */
    padding: 15px;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 600px) {
    .panel-group {
        width: 95%;
        margin: 10px auto;
    }

    .panel-header {
        padding: 12px;
        font-size: 14px;
    }

    .panel-content {
        padding: 0 12px;
    }

    .panel-content p {
        margin: 8px 0;
    }

    .panel-content.open {
        padding: 12px;
    }
}
.section-title {
  margin-left: 30px;
  margin-bottom: 30px;
  position: relative; /* Este necesar pentru a poziționa linia subtitlului */
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px; /* Ajustează înălțimea liniei în funcție de preferințele tale */
  width: 30%;
  height: 2px; /* Grosimea liniei */
  background-color: #0086c0; /* Culoarea albastru deschis */
  transition: width 0.3s ease; /* Efect de tranziție pentru animație */
}

.section-title:hover::after {
  width: 50%; /* Lungimea la care se va extinde linia când se plasează cursorul pe titlu */
}

.blinking {
  display: inline-block;
  animation: blink 3s linear infinite;
}

@keyframes blink {
  0%, 50%, 100% {
      opacity: 1;
  }
  25%, 75% {
      opacity: 0;
  }
}
.whatsapp-button {
  position: fixed;
  bottom: 20px; /* Poziționează butonul în partea de jos a paginii */
  right: 20px; /* Poziționează butonul la marginea dreaptă a paginii */
  background-color: #25d366; /* Culorile brandului WhatsApp */
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9999; /* Asigură că butonul este afișat deasupra altor elemente */
  transition: transform 0.3s ease; /* Adaugă o tranziție pentru o animație lină */

}

.whatsapp-button:hover {
  transform: scale(1.1); /* Face butonul mai mare la interacțiunea cu mouse-ul */
}
/* Stilizare buton dropdown */
.dropbtn {
  background-color:#0086c0;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color:rgb(1, 108, 154);
}

/* Stilizare conținut dropdown */
.dropdown-content {
  background-color:rgb(1, 108, 154);
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  padding: 3px;
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: rgb(1, 108, 154);}

.show {display:block;}
