:root {
  --primary-color: #007bff;
  --secondary-color: #28a745;
  --danger-color: #dc3545;
  --orange-color: #fd7e14;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --dark: #343a40;
  --gray: #6c757d;
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light-bg);
  overflow-x: unset;
}

/*menu.php*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 8px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.menu-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.menu-logo:hover {
  transform: scale(1.1);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 15px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 12px;
  transition: var(--transition);
  border-radius: 6px;
}

.nav a:hover {
  color: var(--primary-color);
  background: var(--light-bg);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.3rem;
}

/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.8rem;
  padding: 4px 8px;
  transition: var(--transition);
  border-radius: 6px;
}

.nav-link:hover {
  color: var(--primary-color);
  background: var(--light-bg);
}

.btn-admin {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 3px 8px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.75rem;
  transition: var(--transition);
}

.btn-admin:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
/* Media Queries Update */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .card-grid,
  .reason-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 20px;
  }
  .overlay-box {
    padding: 30px;
  }
  .nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
  }
  .nav.active ul {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .header-buttons {
    display: none;
  }
}
/*menu.php*/

/*home.php*/
/* Hero Section */
.hero {
  background: url("https://i.pinimg.com/736x/35/79/e2/3579e2e03c44b245af7b50c74b8788a6.jpg")
    no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.8),
    rgba(40, 167, 69, 0.8)
  );
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-out;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

/* Stats Section */
.stats {
  padding: 60px 20px;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat {
  padding: 20px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat h3 {
  font-size: 2rem;
  color: var(--secondary-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--danger-color);
  color: var(--white);
}

.btn-primary:hover {
  background: #b02a37;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-green {
  background: var(--secondary-color);
  color: var(--white);
}

.btn-green:hover {
  background: #1e7e34;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-light {
  background: var(--white);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-light:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Sections */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section-light {
  background: var(--light-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.left-img img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.right-content {
  max-width: 500px;
}

.label {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.info-list {
  list-style: none;
  margin: 20px 0;
}

.info-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Overlay Section */
.overlay-section {
  background: url("https://i.pinimg.com/1200x/1e/49/9d/1e499d5a0fd5b86cbd9d2356464788e2.jpg")
    no-repeat center center/cover;
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 100px 20px;
}

.overlay-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.overlay-box {
  position: relative;
  z-index: 2;
  background: var(--white);
  color: var(--dark);
  padding: 50px;
  max-width: 700px;
  margin: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.overlay-box h2 {
  margin-bottom: 20px;
}

.overlay-box p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
}

/* Orange Section */
.section-orange {
  background: var(--orange-color);
  color: var(--white);
  text-align: center;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.reason {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.reason:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.reason i {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

/* Green Section */
.section-green {
  background: var(--secondary-color);
  color: var(--white);
  text-align: center;
}

/* Testimonial */
.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.testimonial p {
  font-style: italic;
  color: var(--gray);
}
/*home.php*/

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  margin-bottom: 15px;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  margin-right: 10px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid var(--gray);
  padding-top: 20px;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .card-grid,
  .reason-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 20px;
  }
  .overlay-box {
    padding: 30px;
  }
  .nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
  }
  .nav.active ul {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}

/*report.php*/
/* Report Section*/
.report-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.report-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://i.pinimg.com/736x/35/79/e2/3579e2e03c44b245af7b50c74b8788a6.jpg")
    no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.report-section .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.report-header {
  text-align: center;
  margin-bottom: 40px;
}

.report-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}
.reports-table td {
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.report-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.progress-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.progress-step {
  padding: 10px 20px;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--gray);
  border: 2px solid #ddd;
  transition: var(--transition);
}

.progress-step.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.report-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-section-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 1px solid #e9ecef;
  transition: var(--transition);
}

.form-section-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.form-section-card h2 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
  transform: scale(1.02);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

.form-group small {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.form-actions {
  text-align: center;
  padding: 30px 0;
}

.submit-btn {
  background: linear-gradient(135deg, var(--secondary-color), #28a745);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #1e7e34, #28a745);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsivitas */
@media (max-width: 768px) {
  .report-header h1 {
    font-size: 2rem;
  }
  .progress-steps {
    flex-direction: column;
    gap: 10px;
  }
  .form-section-card {
    padding: 20px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  .submit-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}
/*report.php*/

/*admin_login.php*/
/* Login Section */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://i.pinimg.com/736x/35/79/e2/3579e2e03c44b245af7b50c74b8788a6.jpg")
    no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.login-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 450px;
  padding: 20px;
}

.login-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: var(--transition);
}

.login-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.login-header {
  margin-bottom: 30px;
}

.login-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.login-logo:hover {
  transform: scale(1.1);
}

.login-header h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.login-header p {
  color: var(--gray);
  font-size: 1rem;
}

.error-alert {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  border: 1px solid #f5c6cb;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
  transform: scale(1.02);
}

.submit-btn {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0056b3, #1e7e34);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.login-footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsivitas */
@media (max-width: 768px) {
  .login-card {
    padding: 30px 20px;
    margin: 20px;
  }
  .login-header h1 {
    font-size: 1.8rem;
  }
  .form-group input {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  .submit-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
/*admin_login.php*/

/*admin_dashboard.php*/
.dashboard-section {
  padding: 20px 0;
  background: var(--light-bg);
  min-height: 100vh;
}

.dashboard-header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dashboard-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.header-text h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: 700;
}

.header-text p {
  color: var(--gray);
  font-size: 1rem;
}

.logout-btn {
  background: var(--danger-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.logout-btn:hover {
  background: #b02a37;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Stats Section */
.stats-section {
  margin-bottom: 40px;
}

.stats-section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.stat-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  transition: var(--transition);
}

.stat-card.waiting::before {
  background: #fd7e14;
}

.stat-card.processing::before {
  background: var(--primary-color);
}

.stat-card.completed::before {
  background: var(--secondary-color);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.stat-card i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.stat-card h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.stat-card p {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 600;
}

/* Reports Section */
.reports-section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.table-container {
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.reports-table {
  width: 100%;
  border-collapse: collapse;
}

.reports-table th {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.reports-table th i {
  margin-right: 8px;
}

.reports-table td {
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.95rem;
}

.reports-table tbody tr {
  transition: var(--transition);
}

.reports-table tbody tr:hover {
  background: #f8f9fa;
}

.status-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.menunggu {
  background: #fff3cd;
  color: #856404;
}

.status-badge.diproses {
  background: #cce5ff;
  color: #004085;
}

.status-badge.selesai {
  background: #d4edda;
  color: #155724;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.action-btn {
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.action-btn.detail {
  background: var(--primary-color);
  color: var(--white);
}

.action-btn.detail:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.action-btn.process {
  background: #fd7e14;
  color: var(--white);
}

.action-btn.process:hover {
  background: #e8590c;
  transform: translateY(-2px);
}

.action-btn.complete {
  background: var(--secondary-color);
  color: var(--white);
}

.action-btn.complete:hover {
  background: #1e7e34;
  transform: translateY(-2px);
}

.action-btn.delete {
  background: var(--danger-color);
  color: var(--white);
}

.action-btn.delete:hover {
  background: #b02a37;
  transform: translateY(-2px);
}

.reports-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px; /* ✅ biar tidak kepotong */
}

.reports-table th,
.reports-table td {
  white-space: nowrap; /* ✅ biar tidak turun ke bawah */
}
/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsivitas */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .reports-table {
    font-size: 0.85rem;
  }
  .reports-table th,
  .reports-table td {
    padding: 10px;
  }
  .actions {
    flex-direction: column;
    gap: 5px;
  }
  .action-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}
/*admin_dashboard.php*/

/*admin_detail.php*/
/* Detail Section*/
.detail-section {
  padding: 20px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}
.breadcrumb {
  background: white;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: #007bff;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.detail-header {
  text-align: center;
  margin-bottom: 30px;
}
.detail-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}
.detail-header p {
  color: #666;
  font-size: 1.1rem;
}
.back-btn {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
}
.back-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}
.progress-container {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.progress-bar {
  width: 100%;
  height: 20px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745, #007bff);
  transition: width 0.5s ease;
}
.detail-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.detail-card h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.detail-item:hover {
  background: #e9ecef;
  transform: scale(1.02);
}
.detail-item i {
  font-size: 1.5rem;
  color: #007bff;
}
.detail-item strong {
  color: #333;
  min-width: 150px;
}
.detail-item.full-width {
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: flex-start;
}
.status-badge {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}
.status-badge.menunggu {
  background: #fff3cd;
  color: #856404;
}
.status-badge.diproses {
  background: #cce5ff;
  color: #004085;
}
.status-badge.selesai {
  background: #d4edda;
  color: #155724;
}
.attachment-btn {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.attachment-btn:hover {
  background: #1e7e34;
  transform: translateY(-2px);
}
.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.action-btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.action-btn.process {
  background: #fd7e14;
  color: white;
}
.action-btn.process:hover {
  background: #e8590c;
  transform: translateY(-3px);
}
.action-btn.complete {
  background: #28a745;
  color: white;
}
.action-btn.complete:hover {
  background: #1e7e34;
  transform: translateY(-3px);
}
.action-btn.delete {
  background: #dc3545;
  color: white;
}
.action-btn.delete:hover {
  background: #b02a37;
  transform: translateY(-3px);
}
.print-btn {
  background: #6c757d;
  color: white;
  margin-left: 10px;
}
.print-btn:hover {
  background: #545b62;
  transform: translateY(-3px);
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}
/*admin_detail*/
