body {
    font-family: "Poppins", Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    margin: 50px 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    
}



.main-content {
    width: 95%;
    padding: 30px;
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .main-content {
        width: 100%; /* Asegura que ocupe todo el ancho en dispositivos móviles */
    }
}

.logo-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    background-color: #ffffff;
    z-index: 1000;
}

.logo {
    width: 150px;
    height: auto;
    margin: 10px;
    display: block;
}

.subtitle {
    margin-top: 5px; /* Ajusta el margen superior del subtítulo */
    font-size: 18px;
    color: #8bad9d; /* Cambia el color del texto si es necesario */
    text-align: left; /* Centra horizontalmente el texto */
}

.box {
    width: 90%;
    margin: 10px auto;
    padding: 20px;
    border-radius: 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 60px;
}

.flashcard-container {
    position: relative;
    margin-bottom: 20px;
    min-height: 200px;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


#flashcard.front {
    width: 100%;
    padding: 20px;
    margin-top: 20px;
    height: auto;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.phrase-text {
    width: 100%;
    height: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    margin: 10px 0;
}

#flashcard.back {
    font-size: 36px;
    font-weight: 700; 
    margin-bottom: 10px;
    color: #3B6790; 
    cursor: pointer;
}

#flashcard.front:hover {
    color: #092036; 
}

#flashcard.back:hover {
    color: #8bad9d; 
}

/* Estilos para pantallas grandes */
@media only screen and (min-width: 768px) {
    #flashcard.front, #flashcard.back {
        font-size: 46px;
        font-weight: 600; /* Heavy */
    }
}

/* Estilo para pantallas pequeñas (móviles) */
@media only screen and (max-width: 767px) {
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .main-content {
        margin-top: 60px;
        padding: 10px;
    }

    .box {
        width: 95%;
        padding: 10px;
        margin: 5px auto;
        border-radius: 30px;
    }

    .flashcard-container {
        padding: 15px;
        margin: 10px 0;
        min-height: auto;
    }

    #flashcard.front {
        padding: 10px;
        margin-top: 10px;
    }

    /* Ajustes para orientación horizontal en móvil */
    @media screen and (orientation: landscape) {
        .main-content {
            margin-top: 40px;
        }

        .flashcard-container {
            min-height: 200px;
        }

        .phrase-text {
            font-size: 20px;
            line-height: 1.2;
        }
    }
}

#prev-btn {
    padding: 15px 30px;
    background-color: #EFB036;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-size: 20px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

#next-btn {
    padding: 15px 30px;
    background-color: #EFB036;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-size: 20px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

#auto-play-btn {
    padding: 15px 30px;
    background-color: #23486A;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-size: 20px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

#home-btn {
    padding: 15px 30px;
    background-color: #23486A;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-size: 20px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

#home-btn:hover {
    background-color: #1c1a1c;
}

#next-btn:hover {
    background-color: #1c1a1c;
}

#prev-btn:hover {
    background-color: #1c1a1c;
}

#auto-play-btn:hover {
    background-color: #1c1a1c;
}

#flashcard-count {
    font-size: 24px;
    color: #525e70;
    margin-top: 10px;
    font-weight: 700;
}

.nav-button {
    padding: 10px 20px;
    background-color: #a4bea0;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #1c1a1c;
}

.container {
    width: 90%;
    margin: 12px auto;
    
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Distribuye uniformemente los elementos */
    height: 100%; /* Ajusta la altura para que se aplique correctamente */
    
   
}


.text-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    justify-content: space-between; /* Distribuye uniformemente los elementos */
    height: 100%; /* Ajusta la altura para que se aplique correctamente */
    
}

textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 18px;
    color: #4d0357;
}

.controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.icons {
    display: flex;
    align-items: center;
    margin-right: 10px;
    color: #4d0357;
}

.selects {
    width: 45%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
}

.box select {
    margin-left: 0px; /* Espacio a la izquierda del select */
    margin-right: 20px; /* Espacio a la derecha del select */
    width: calc(100% - 20px); /* Ancho del select, descontando el espacio en ambos lados */
}


.exchange {
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
}

#translate-btn {
    padding: 10px 20px;
    background-color: #23486A;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    font-size: 20px;
    transition: background-color 0.3s;
}

#translate-btn:hover {
    background-color: #1c1a1c;
}

#flashcard-count{
    font-size:18px;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000; /* Asegura que la barra de navegación esté por encima del resto del contenido */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Agrega una sombra para resaltar la barra */
}

.logo-container {
	color: #058364;
    display: flex;
    align-items: center;
    padding: 7px 15px; /* Ajusta el relleno según sea necesario */
}

.logo {
    width: 150px; /* Ajusta el tamaño del logo según sea necesario */
    margin-right: 15px; /* Espacio entre el logo y el subtítulo */
}

.subtitle {
    margin: 0; /* Asegura que no haya margen alrededor del subtítulo */
    font-size: 18px;
    color: #058364; /* Cambia el color del texto si es necesario */
    text-align: left; /* Alinea el texto a la izquierda */
}




.auto-play-button {
  text-align: center;
  margin-top: 20px;
}

#auto-play-toggle {
  padding: 15px 30px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  font-size: 20px;
  transition: background-color 0.3s;
}

#auto-play-toggle:hover {
  background-color: #4d0357;
}







/* Estilo para pantallas pequeñas (móviles) */
@media only screen and (max-width: 767px) {
    .main-content {
        margin-top: 80px; /* Aumentar el margen superior del contenido principal en dispositivos móviles */
         width: 90%;
    }
}





@media only screen and (max-width: 767px) {
    body {
        font-size: 18px; /* Reducir el tamaño de la fuente para dispositivos móviles */
    }

    .main-content {
    	 width: 100%;
        margin-top: 50px; /* Reducir el margen superior del contenido principal */
    }

    .logo {
        width: 120px; /* Reducir el tamaño del logo en dispositivos móviles */
    }

    .subtitle {
        font-size: 17px; /* Reducir el tamaño del subtítulo en dispositivos móviles */
    }

    .box {
        width: 100%; /* Asegurar que los cuadros ocupen todo el ancho en dispositivos móviles */
    }

    .text-input {
        margin-bottom: 10px; /* Reducir el margen inferior de los cuadros de texto */
    }

    textarea {
        font-size: 18px; /* Reducir el tamaño de la fuente en los cuadros de texto en dispositivos móviles */
    }

    .exchange {
        font-size: 20px; /* Reducir el tamaño del icono de intercambio en dispositivos móviles */
    }

    .icons {
        margin-right: 5px; /* Reducir el margen derecho de los iconos en dispositivos móviles */
    }
}



.controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.copy-btn {
    background: transparent;
    border: none;
    color: #23486A;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s;
}

.copy-btn:hover {
    transform: scale(1.1);
}

.copy-btn i {
    font-size: 22px;
}

.language-buttons {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 1.5px solid #487094;
    color: #23486A;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: #23486A;
    color: white;
}

.lang-btn.active {
    background: #23486A;
    color: white;
}

.speech-practice-container {
    width: 100%;
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.speech-practice-container h3 {
    color: #23486A;
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}

.speech-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.modern-select {
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #3B6790;
    font-size: 16px;
    color: #23486A;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-select:hover {
    border-color: #23486A;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.control-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #3B6790;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.control-btn:hover {
    background-color: #23486A;
}

#stop-btn {
    background-color: #dc3545;
}

#clear-btn {
    background-color: #6c757d;
}

.speech-output {
    width: 100%;
    height: 150px;
    padding: 10px;
    border-radius: 8px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    font-size: 14px;
    line-height: 1.4;
    overflow-y: auto;
    margin-top: 10px;
    font-family: Arial, sans-serif;
}

.speech-output .final {
    color: #000;
    margin-bottom: 8px;
}

.speech-output .interim {
    color: #666;
    font-style: italic;
}

.control-btn {
    position: relative;
}

.control-btn.recording::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
    top: 4px;
    right: 4px;
}

@media screen and (max-width: 767px) {
    .speech-controls {
        flex-direction: column;
    }

    .button-group {
        width: 100%;
        justify-content: center;
    }

    .modern-select {
        width: 100%;
    }
}

.speech-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.speech-popup.minimized {
    height: 50px;
    overflow: hidden;
}

.speech-popup-header {
    background-color: #3B6790;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
}

.speech-popup-header h3 {
    color: white;
    font-size: 16px;
    margin: 0;
}

.popup-controls {
    display: flex;
    gap: 8px;
}

.popup-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.popup-btn:hover {
    color: #e9ecef;
}

.speech-popup-content {
    padding: 15px;
}

.speech-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.modern-select {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #3B6790;
}

.button-group {
    display: flex;
    gap: 5px;
}

.control-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    background-color: #3B6790;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background-color: #23486A;
}

.speech-output {
    width: 100%;
    height: 100px;
    padding: 10px;
    border-radius: 8px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    font-size: 14px;
    line-height: 1.4;
    overflow-y: auto;
    margin-top: 10px;
}

.open-speech-btn {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: #3B6790;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 10px;
    width: auto;
    font-size: 14px;
}

.open-speech-btn:hover {
    background-color: #23486A;
    transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
    .speech-popup {
        width: 90%;
        left: 5%;
        right: 5%;
    }
    
    .open-speech-btn {
        width: 100%;
        margin-top: 10px;
    }
}