/* css styles */

#exerciseCardsContainer {
    display: grid;
    grid-template-columns: repeat(2, minmax(35rem, 2fr));
    gap: 2rem;    
    padding: 2rem; 
    justify-content: center;
}

  /* Individual Card Style */
.exerciseCard {
    font-family: Arial, sans-serif;
    padding: 1.5rem;              /* relative padding */
    box-shadow: 0 1rem 2rem rgba(0.1, 0.1, 0.1, 0.2); /* Adds a subtle shadow */
    border-radius: 1rem;
    background: #fff;
    
}

.exerciseCard-summaryFields {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.audio-container {
    display: flex;
    align-items: center; /* Aligns items vertically */
    gap: 1rem; /* Adds spacing between elements */
    margin: 1rem;
}

.audioPlayer {
    flex-grow: 1; /* Makes the audio player take up available space */
    max-width: 70%; /* Adjusts width while keeping responsiveness */
}

.exerciseCard-startVoiceButton {
    padding: 0.5em 1em;
    font-size: 1rem;
    background: #97bee5;
    border: none;
    box-shadow: 0 1rem 2rem rgba(0.1, 0.1, 0.1, 0.2);
    border-radius: 0.5rem;
    transition: 0.5s ease;
}

.exerciseCard-startVoiceButton:hover {
    background: #115b9c; /* Darker shade on hover */
    color: white
}

.exerciseCard-startVoiceButton.active {
    background: #115b9c;
    color: white;
}

.exerciseCard-voiceCommands {
    background-color: #edecec;
    padding: 8px;
    border-radius: 0.5rem;
}

.site-footer {
    color: black;
    padding: 1em 0;
    text-align: center;
    font-size: 0.9em;
    font-weight: bold;
}