/* Estilos base */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  color: #1a202c;
  line-height: 1.5;
}

/* Componentes personalizados */
.card {
  background-color: white;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  /*box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);*/
  overflow: hidden;
}

.card-header {
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a202c;
}

.card-description {
  font-size: 0.875rem;
  color: #718096;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background-color: #3182ce;
  color: white;
}

.btn-primary:hover {
  background-color: #2c5282;
}

.btn-outline {
  background-color: white;
  border: 1px solid #e2e8f0;
}

.btn-outline:hover {
  background-color: #f7fafc;
}

.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-default {
  background-color: #ebf8ff;
  color: #2b6cb0;
}

.badge-secondary {
  background-color: #f7fafc;
  color: #4a5568;
}

.badge-destructive {
  background-color: #fed7d7;
  color: #c53030;
}

/* Progress bar */
.progress {
  overflow: hidden;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #edf2f7;
}

.progress-bar {
  height: 100%;
  background-color: #3182ce;
}

/* Animações */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .card-header,
  .card-content {
    padding: 1rem;
  }
}






.navbar-top {
    font-size: 14px;
    padding: 0.5rem 0;
}

.navbar-bottom {
    font-size: 15px;
    font-weight: 500;
    /*padding: 0.4rem 0;
    border-top: 1px solid #dee2e6;*/
}

.navbar-bottom .nav-link {
    color: #6c757d;
    display: flex;
    align-items: center;
    padding: 0.45rem 0.90rem;
}

.navbar-bottom .nav-link:hover {
    color: #000;
}

.nav-icon {
    margin-right: 5px;
    font-size: 16px;
}

.badge {
    font-size: 13px;
}

.navbar-brand img {
    width: auto;
    height: 2.5rem;
    object-fit: contain;
}

.topbar {
    background: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.bg-light{
    background-color: #F9FAFB !important;
}
.text-foreground {
    color: #1f242e;
}
.text-muted-foreground{
    color: #65758b !important;
}
.text-sm {
    font-size: .825rem;
    line-height: 1.25rem;
}

.icon-teal{
    color: #2e9e93;
}
.text-teal{
    color: #2e9e93;
}
.bg-teal{
    background-color: #2e9e93;
}
.icon-blue{
    color: #3c94dd;
}
.text-blue{
    color: #3c94dd;
}
.icon-green{
    color: #22c35d;
}
.text-green{
    color: #22c35d;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-xs {
    font-size: 0.73rem;
    line-height: 1rem;
}

.badge-success {
    color: #22c35d;
    background-color: #E8F9EE;
}

.badge-primary {
    color: #3c94dd;
    background-color: #EAF4FB;
}

.border-teal{
    border-color: #2e9e93;
}

.bg-muted {
    background-color: #efefef;
}
/*.btn-light{
    background-color: #f9faf0;
    color: #1f242e;
}*/
