body.login-page {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  text-align: center;
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(128, 0, 128, 0.3);
}

.login-buttons button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.google {
  background-color: #db4437;
  color: white;
}

.facebook {
  background-color: #4267B2;
  color: white;
}

.agenda-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #800080;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.agenda-btn:hover {
  background-color: #a020f0;
}



body.dashboard-page {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.dashboard-container {
  text-align: center;
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(128, 0, 128, 0.3);
}

.dashboard-actions {
  margin-top: 30px;
}

.action-btn {
  display: inline-block;
  margin: 10px;
  padding: 14px 28px;
  background-color: #800080;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.action-btn:hover {
  background-color: #a020f0;
}










body.barbeiros-page {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 40px;
}

.barbeiros-container h2 {
  text-align: center;
  margin-bottom: 30px;
}

.barbeiros-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.barbeiro-card {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 0 10px rgba(128, 0, 128, 0.3);
}

.barbeiro-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.perfil-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background-color: #800080;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.perfil-btn:hover {
  background-color: #a020f0;
}








body.perfil-page {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.perfil-container {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(128, 0, 128, 0.3);
}

.perfil-container img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

form {
  margin-top: 20px;
  text-align: left;
}

form label {
  display: block;
  margin-top: 10px;
}

form input, form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: none;
  background-color: #2a2a2a;
  color: white;
}

.confirmar-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #800080;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.confirmar-btn:hover {
  background-color: #a020f0;
}








body.erro-page {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.erro-container {
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.voltar-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #800080;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.voltar-btn:hover {
  background-color: #a020f0;
}






body.confirmacao-page {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.confirmacao-container {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  text-align: left;
  box-shadow: 0 0 20px rgba(128, 0, 128, 0.3);
}

.confirmacao-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.confirmacao-container p {
  margin: 8px 0;
}

.confirmar-btn, .cancelar-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.confirmar-btn {
  background-color: #800080;
  color: white;
}

.cancelar-btn {
  background-color: #444;
  color: white;
  margin-left: 10px;
}

.confirmar-btn:hover {
  background-color: #a020f0;
}

.cancelar-btn:hover {
  background-color: #666;
}





body.sucesso-page {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.sucesso-container {
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.voltar-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #800080;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.voltar-btn:hover {
  background-color: #a020f0;
}








body.avaliacao-page {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.avaliacao-container {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0 0 20px rgba(128, 0, 128, 0.3);
}

.avaliacao-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

form label {
  display: block;
  margin-top: 10px;
}

form select, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: none;
  background-color: #2a2a2a;
  color: white;
}

.confirmar-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #800080;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.confirmar-btn:hover {
  background-color: #a020f0;
}








body.historico-page {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 40px;
}

.historico-container {
  max-width: 600px;
  margin: auto;
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(128, 0, 128, 0.3);
}

.agendamentos-list {
  list-style: none;
  padding: 0;
}

.agendamento-item {
  border-bottom: 1px solid #333;
  padding: 15px 0;
}

.avaliar-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #800080;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.avaliar-btn:hover {
  background-color: #a020f0;
}

.avaliado-label {
  display: inline-block;
  margin-top: 10px;
  color: #0f0;
  font-weight: bold;
}

.voltar-btn {
  display: block;
  margin-top: 30px;
  text-align: center;
  padding: 12px;
  background-color: #800080;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.voltar-btn:hover {
  background-color: #a020f0;
}









.form-admin {
  margin-bottom: 30px;
}

.form-admin input {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  background-color: #2a2a2a;
  color: white;
  border: none;
}

.admin-list {
  list-style: none;
  padding: 0;
}

.admin-list li {
  padding: 10px 0;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}







.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.admin-table th, .admin-table td {
  padding: 12px;
  border-bottom: 1px solid #333;
  text-align: left;
}

.admin-table th {
  background-color: #800080;
  color: white;
}

.admin-table tr:hover {
  background-color: #2a2a2a;
}






.avaliacoes-list {
  list-style: none;
  padding: 0;
}

.avaliacao-item {
  padding: 15px;
  border-bottom: 1px solid #333;
  background-color: #1e1e1e;
  margin-bottom: 10px;
  border-radius: 8px;
}




@media screen and (max-width: 768px) {
  .dashboard-container,
  .perfil-container,
  .confirmacao-container,
  .sucesso-container,
  .historico-container,
  .reserva-container {
    width: 90%;
    padding: 20px;
  }

  .admin-table th, .admin-table td {
    font-size: 14px;
    padding: 8px;
  }

  .action-btn, .confirmar-btn, .cancelar-btn, .voltar-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .barbeiros-list {
    flex-direction: column;
    align-items: center;

    
    
    
    
    
    .login-page {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  text-align: center;
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(128, 0, 128, 0.3);
}

.login-buttons a {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  color: white;
  background-color: #800080;
  transition: background 0.3s;
}

.login-buttons a:hover {
  background-color: #a020f0;
}




/* menu.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.menu-container {
  position: relative;
}

.menu-header {
  background-color: #6a1b9a;
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-header h3 {
  margin: 0;
  font-size: 20px;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

.sidebar {
  background-color: #6a1b9a;
  color: white;
  width: 250px;
  padding: 20px;
  display: none;
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: white;
  color: #6a1b9a;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.menu-list li {
  margin: 12px 0;
}

.menu-list li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.menu-list li.active a {
  font-weight: bold;
  text-decoration: underline;
}

.cadastro-btn {
  display: block;
  margin-top: 16px;
  padding: 12px;
  background-color: #7c3aed;
  color: white;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.cadastro-btn:hover {
  background-color: #5b21b6;
}




.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #0f0f12;
  color: #e6e6ea;
  padding: 24px;
  border-right: 1px solid #24262e;
  transition: left 0.3s ease;
  z-index: 1000;
}

.sidebar.open {
  left: 0;
}

.menu-header h2 {
  margin: 0;
  font-size: 20px;
  color: #a78bfa;
}

.menu-header p {
  margin: 8px 0;
  color: #9aa0a6;
}

.login-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  background: #7c3aed;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.login-btn:hover {
  background: #5b21b6;
}

.menu-items {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-items a {
  text-decoration: none;
  color: #e6e6ea;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.menu-items a:hover {
  background: #1a1b20;
}

.menu-items a.active {
  background: #7c3aed;
  color: white;
}

.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  background: #7c3aed;
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1100;
}
