﻿/* Containers ocupando 100% da largura */
.aula-container-recompensa {
    width: 100%;
    padding: 0px;
    background: transparent;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Containers de conteúdo e pontuação lado a lado */
.aula-lado-esquerdo {
    width: 60%;
    height: 600px;
    padding: 15px;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.aula-lado-direito {
    width: 40%;
    height: 600px;
    padding: 15px;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.aula-container-wrapper {
    display: flex;
    gap: 10px;
}

/* Título da aula acima do vídeo */
.aula-titulo {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.aula-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
    align-items: flex-start;
}

.aula-video-container {
    width: 100%;
    max-width: 100%; /* Ajuste o valor conforme necessário */
    height: 80vh; /* Ajuste a altura conforme necessário */
    background-color: none;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.aula-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px;
    margin-bottom: 20px;
}

/* Input do link do vídeo */
.aula-link-video {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    align-content: end;
}

/* Título do container de pontuação */
.aula-container-nome {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.aula-recompensa {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    margin-right: 5px;
}

aula-recompensa-input {
    display: flex;
    flex-direction: column;
    flex: 1; /* permite expandir o input ao restante do espaço */
}

.aula-recompensa-input label {
    font-size: 14px;
    margin-bottom: 0px;
}

/* Inputs de pontuação e moedas */
.aula-ganhos-input {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.aula-icone-recompensa {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: 15px;
}
