/*
Theme Name: Meu Tema W3
Theme URI: http://seudominio.com
Author: Patrique Uiliam
Author URI: http://seudominio.com
Description: Tema simples usando W3.CSS e compatível com BuddyPress
Version: 1.0
License: GNU General Public License v2 or later
Tags: w3css, buddypress
Text Domain: meu-tema-w3
*/
@import url('https://www.w3schools.com/w3css/4/w3.css');


a {
    text-decoration: none; /* Remove o sublinhado */
}

body {
    font-family: 'Rubik', sans-serif!important;
}



/* BOTÃO RODAPE DA PAGINA*/

       .botao-canto-inferior {
          position: fixed;
          bottom: 10px; /* ajuste a distância vertical do botão */
          right: 10px; /* ajuste a distância horizontal do botão */
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 10px;
          border: none;
        }
        
        .perfil {
          display: flex;
          align-items: center;
          margin-right: 10px;
        }
        
        .perfil img {
          width: 30px; /* ajuste o tamanho da foto do perfil */
          height: 30px;
          border-radius: 50%;
          margin-right: 5px;
        }
        
        .perfil span {
          font-size: 14px; /* ajuste o tamanho do texto */
          font-weight: bold;
        }
        
        .botao-canto-inferior span {
          font-size: 16px; /* ajuste o tamanho do texto */
          font-weight: bold;
        }
        
        
        
        
    .topbar {
      height: 50px;
      border-bottom: 1px solid #ddd;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      background-color: white;
      position: relative;
    }
    .topbar i {
      font-size: 20px;
      color: #007aff;
    }
    .topbar .center-title {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      font-weight: bold;
      font-size: 16px;
      color: #333;
    }        