/*
Theme Name: AlpAI
Author: Anatol Ehrlich
Description: AlpAI Theme.
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 5.7
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentyfive
*/

html {
    scroll-behavior: smooth;
}

header {
    box-shadow: 0 -6px 5px 5px rgba(0,0,0,0.5);
    position: relative !important;
    z-index: 1000;
}

textarea {
    resize: none;
}

#translationForm {
    font-family: Montserrat;
}

#translationForm input,
#translationForm button,
#translationForm textarea {
    font-family: inherit;
    text-align: center;
    font-size: 13px;
}


#inputSequence {
    width: 100%;
    height: 1.5rem;
}

#outputField {
    width: 100%;
    height: 1.5rem;
}

.form-button {
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-button > button {
	color: #022848;
    padding: 0.5rem 0.5rem;
    border-color: #094C83;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
}

.form-button > button:hover {
    opacity: 0.8; /* Adjust opacity for better hover effect */
    background-color: #094C83; /* Adds background color on hover */
    color: #ffffff; /* Changes text color to white on hover */
    border-style: solid;
}

#loadingSpinner {
    display: none;
    width: 30px;
    height: 30px;
    border: 4px solid #ccc;
    border-top: 4px solid #094C83; /* Use your contrast color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-div {
    display: flex;
    justify-content: space-between; /* Spreads the two inner divs apart */
    gap: 20px; /* Adds spacing between them */
}

.inner-div {
    display: flex;
    align-items: center; /* Aligns <p> and <em> inline */
    gap: 5px; /* Adds a small space between <p> and <em> */
}

#exampleSeq {
	cursor: pointer;
}
