body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #2c2c2c;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent 4px
    );
    color: #fff;
    min-height: 100vh;
}

body {
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}


.centered-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.flex_cursos {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.content {
    text-align: center;
    padding: 20px;
}

.login-form {
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Sombra */
}

.login-form label {
    display: block;
    margin-bottom: 10px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #444; /* Cor de fundo dos inputs */
    color: #fff; /* Cor do texto dos inputs */
}


footer {
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0; /* Adapte o preenchimento conforme necessário */
}

/* Estilos específicos para a página do curso */
.curso-content {
    background-color: #333; /* Fundo grafite */
    color: #fff; /* Letras em branco */
    min-height: 100vh;
}

.curso-content {
    margin-top: 100px; /* Adiciona espaçamento acima do conteúdo dentro da classe .curso-img */
}

.curso-name {
    font-family: 'Martel', serif;
    color: yellow;
    text-align: center;
    font-size: 40px;
    padding: 5px;
}

.curso-owner {
    font-family: 'Ariel', serif;
    color: yellow;
    text-align: center;
    font-size: 20px;
    padding: 5px;
}

.curso-img {
    display: flex;
    align-items: center;
    justify-content: center;
	margin: 40px;
}

.curso-info {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 47px;
    background-color: black; /* Fundo preto */
}


.curso-info a {
    color: yellow; /* Links em amarelo */
    /* Se desejar, pode adicionar mais estilos para os links, como sublinhado ou outra formatação */
}

.menu-button {
    /* Remova o background-color */
    color: yellow;
    text-decoration: none;
    padding: 0; /* Removemos o padding */
    width: 150px; /* Defina a largura do botão */
    height: 50px; /* Defina a altura do botão */
    margin: 0 10px; /* Margem entre os botões */
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Transição suave para a mudança de cor de fundo */
    background-image: url('../images/button.png'); /* Adiciona a imagem de fundo */
    background-size: contain; /* Ajusta a imagem para caber dentro do botão */
    background-repeat: no-repeat; /* Impede a repetição da imagem de fundo */
    background-position: center; /* Centraliza a imagem de fundo */
    display: inline-flex; /* Use flex para alinhar itens centralmente */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    outline: none; /* Remove a borda ao focar */
    border: none; /* Remove a borda padrão do botão */
    background-color: transparent; /* Garante que o fundo do botão seja transparente */
    font-size: 16px;
}


.user-info-container {
    float: right;
    margin-right: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.user-icon,
.coin-icon {
    margin: 0 5px;
}

.user-name,
.user-coins {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Ariel', serif;
    color: rgb(119, 0, 255);
}

.user-name {
    font-weight: bold;
}

.centeration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Estilizando a barra de rolagem */
/* Largura e altura da barra de rolagem */
::-webkit-scrollbar {
    width: 15px;
    height: 15px;
}

/* Estilizando a barra de rolagem em si */
::-webkit-scrollbar-thumb {
    background: yellow;
}

/* Setas */
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    height: 15px;
    width: 15px;
    display: block;
    background-color: transparent;
}

/* Setas para cima */
::-webkit-scrollbar-button:start:decrement {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z' /%3E%3C/svg%3E");
}

/* Setas para baixo */
::-webkit-scrollbar-button:end:increment {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M18 16.17L16.59 17.6 12 13.42l-4.59 4.59L6 16l6-6 1.41 1.41L18 16.17z' /%3E%3C/svg%3E");
}
