
body {
    font-family: 'Manrope', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    font-family: 'Manrope', sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #6f42c1;
}
.navbar-brand {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.navbar-brand:hover {
    color: #e76f51;
    text-decoration: underline;
}


.nav-link {
    color: rgb(235, 235, 235);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.nav-link:hover {
    color: #e76f51;
    text-decoration: underline;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.4);
}
.btn-primary, .btn-success, .btn-danger {
    border-radius: 12px;
}
.bg-brand {
    color: blueviolet;
}


.card-header {
    background-color: #4b0082;
}
.card-summary {
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 20px;
    color: white;
}
.card-green { 
    background-color: #5adeff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.4);
}
.card-red { 
    background-color: #bc2dff; 
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.4);
}
.card-blue { 
    background-color: #e76f51; 
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.4);
}


.table-custom thead {
background-color: #6f42c1;
color: white;
font-weight: 600;
}
.table-custom thead a {
    color: white;
}
.table-custom tfoot {
background-color: #f3e8ff;
font-weight: 600;
color: #4b0082;
}

.table-custom tfoot {
background-color: #f3e8ff;
font-weight: 600;
color: #4b0082;
}

.table-custom tbody tr:hover {
background-color: #f5f5ff;
}

.table-custom .text-success {
color: #198754 !important;
}
.table-custom .text-danger {
color: #dc3545 !important;
}
.btn {
    background-color: #6f42c1; 
    color: #fff;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn-login {
    background-color: #4b0082; 
    border: 1px solid  #e76f51;
    color: #fff;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
    background-color: #e76f51;
    border: 1px solid  #e76f51;
    color: #fff;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.4);
}

.btn-login:hover {
    background-color: #e76f51;
    
    color: #fff;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.4);
}
thead {
    background-color: #6f42c1;
    color: #fff;
}

#userTranscriptPreview {
    font-style: italic;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #6c757d;
  }
h2 {
    font-weight: 400;
}

.row.card-panel {
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-box {
    background-color: #6f42c1;
    color: white;
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
    min-width: 250px;
    max-width: 100%;
    flex: 1 1 250px;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.4);
}

.bg-info {
    background-color: #6f42c1 !important;
    color: white !important;
}
.text-info {
    color: #6f42c1 !important;
}
.border-info {
    border-color: #6f42c1 !important;
}

.table-info {
    background-color: #6f42c1 !important;
    color: white !important;
}
.table-info th,
.table-info td {
    background-color: #6f42c1 !important;
    color: white !important;
}
.table-info a {
    color: white;
}

@keyframes fadeSlideIn {
    0% {
      opacity: 0;
      transform: translateY(-150px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  body.login-page {
    background: url("/static/img/wavy_background.png"), linear-gradient(135deg, #6f42c1, #3c1e64);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .glass-effect {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 480px;
  }
  
  .input-login {
    border: 1px solid  #e76f51;
  }

  @media (max-width: 768px) {
    table {
      font-size: 0.875rem; /* ~14px */
    }
    .table th,
    .table td {
      padding: 0.4rem 0.3rem;
    }
  }

  @media (max-width: 768px) {
    .btn-mobile-small {
      padding: 2px 6px;
      font-size: 0.75rem;
      line-height: 1.2;
    }
  }
  
  @media (max-width: 576px) {
    .dashboard-paliwo-table {
      font-size: 12px;
    }
  }
  
  @media (min-width: 768px) {
    .aos-mobile-only {
      pointer-events: none;
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
      animation: none !important;
    }
  }
  