/* style.css – Penyesuaian tampilan aplikasi */

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
}
.bg-light {
  background-color: #f8f9fa !important;
}
.card {
  border-radius: 0.5rem;
}
.btn-light {
  color: #212529;
}
/* Spinner pada tombol login */
button .spinner-border {
  visibility: hidden;
}
button.loading .spinner-border {
  visibility: visible;
}
button.loading #btnText {
  visibility: hidden;
}
/* Navigasi user */
.list-group-item {
  cursor: pointer;
}
.list-group-item.active {
  background-color: #0d6efd;
  color: #fff;
}
/* Tambahan untuk scroll konten jika besar */
#content {
  max-height: calc(100vh - 180px);
  overflow-y: auto;
}
/* Responsif untuk mobile Cordova */
@media (max-width: 576px) {
  .container {
    padding: 0.5rem;
  }
  .card {
    margin: 0 0.5rem;
  }
}

.spinner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

/* style-dashboard.css */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #e3f2fd, #f8f9fa);
  min-height: 100vh;
}

/* Navbar gradasi */
.navbar {
  background: linear-gradient(45deg, #0d6efd, #0a58ca);
}

/* Kartu menu dashboard */
.card-menu {
  transition: all 0.3s ease;
  border: none;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card-menu:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card-menu i {
  color: #0d6efd;
  transition: transform 0.2s;
}

.card-menu:hover i {
  transform: scale(1.2);
}

/* Tombol outline stylish */
.btn-outline-secondary {
  transition: all 0.2s ease;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  color: white;
}

/* Modal modern */
.modal-content {
  border-radius: 1rem;
}

/* Efek fokus input */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

/* Judul sambutan */
#welcomeMsg {
  text-align: center;
  font-weight: bold;
  color: #0d6efd;
  margin-bottom: 1.5rem;
}

button.btn-outline-primary i.bi-fingerprint:hover {
  transform: scale(1.2);
}

/* Kolom skor pada tabel form penilaian kinerja */
.table th.skor-col,
.table td.skor-col {
  width: 65px;
  min-width: 65px;
  text-align: center;
}
