/* Styles for large screens */
ins.adsbygoogle[data-ad-status="unfilled"] {
    display: none !important;
}

h1 {
    font-size:20px;
}

footer {
    text-align: center;
}

#output, #result {
    font-size: 15px;
}

@media only screen and (max-width: 768px) {
  /* Styles for medium screens */
  #output, #result {
    font-size: 12px;
  }

  /* Styles for model buttons */
  #model button {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 480px) {
  /* Styles for small screens */
  #output, #result {
    font-size: 10px;
  }

  /* Styles for model buttons */
  #model button {
    font-size: 10px;
    margin-bottom: 5px;
  }

  /* Styles for the main container */
  #main-container {
    padding: 10px;
  }
}

/* Common styles for all screen sizes */
body {
    background-color: #F2F2F2;
    font-family: Arial, sans-serif;
    margin: 0;
}

#main-container {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#output {
    background-color: #FFFFFF;
    width: 100%;
    height: 200px;
    margin-top: 10px;
    font-size: 12px;
    overflow-x: scroll;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

#result {
    background-color: #FFFFFF;
    width: 100%;
    height: 300px;
    margin-top: 10px;
    font-size: 15px;
    overflow-x: scroll;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

#model {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

#model b {
    margin-right: 10px;
}

#input_file, #input_mic {
    margin-bottom: 20px;
}

input[type="file"] {
    border: none;
    font-size: 12px;
    padding: 5px;
    background-color: #f1f1f1;
    border-radius: 3px;
    cursor: pointer;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}

th, td {
    padding: 5px;
}

select {
    font-size: 14px;
    padding: 5px;
    border: none;
    background-color: #f1f1f1;
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
}

button {
    font-size: 14px;
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3e8e41;
}

a {
    color: #4CAF50;
}

a:hover {
    text-decoration: underline;
}
