/* Start custom CSS for html, class: .elementor-element-7f7e691 *//* Reset e variáveis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4A90E2;
  --secondary-color: #f5f7fa;
  --text-color: #333;
  --border-color: #ddd;
}

/* Estilos base */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: var(--secondary-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.cta-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #357ABD;
}

/* Sidebar */
.sidebar {
  background-color: white;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
}

/* Conteúdo principal */
.main-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Seção de perfil */
.profile-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Tabelas */
.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table th, table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

.status.approved {
  color: green;
  font-weight: bold;
}

.status.pending {
  color: orange;
  font-weight: bold;
}

.action-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 2rem;
  background-color: #e8f4ff;
  border-radius: 8px;
}

.cta-section .large {
  font-size: 1.2rem;
  padding: 1rem 2rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background-color: white;
  font-size: 0.9rem;
  color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
  .main-content {
    padding: 1rem;
  }

  .profile-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section {
    padding: 1rem;
  }
}/* End custom CSS */