/* fallback */
@font-face {
    font-family: 'Material Icons Extended';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialiconsextended/v152/kJEjBvgX7BgnkSrUwT8UnLVc38YydejYY-oE_LvJ.woff2) format('woff2');
    }
    
    .material-icons-extended {
    font-family: 'Material Icons Extended';
    font-size: 28px;
    font-weight: normal;
    font-style: normal;
   
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    }
    
body{
    background: none !important;
    
}


/* Focus styles (Fix!) */
.language-select:focus {
  outline: none !important;
}



.language-select{
    border-style: hidden;
    cursor: pointer;
    border-radius: 100px;
    padding: 5px 10px;
    margin: 10px;
}

.language-select:hover{
    box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

.language-select:active{
    background-color: #6964f7;
    color: rgb(255, 255, 255);
}

textarea{
max-width: 100%;
}

#sbtn {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    font-family: "Roboto", arial, sans-serif;
    font-size: 20px;
    border-bottom: 3px solid #6964f7;
    border-radius: 200px;
    max-width: 480px;
  }

  .switch-button {
    
background-color: white;
border: None;
border-radius: 100%;
min-width: 45px;
min-height: 45px;
width: 45px; /* Fixed width */
height: 45px; /* Fixed height */
cursor: pointer;
transition: background-color 0.2s, box-shadow 0.2s, transform 0.1s;
display: flex;
align-items: center;
justify-content: center;

}

.switch-button:hover {
background-color: #f1f3f4; /* light gray like Google */
}

.switch-button:active {
background-color: #e0e0e0;
}