* {
  padding: 0;
  margin: 0;
  color: #0f172a;
}

h2 {
  font-size: 48px;
  text-align: center;
  color: #0f172a;
  margin-top: 20px;
}

h3 {
  color: #0f172a;
  margin: 20px;
}

html {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  font-family: "Montserrat";
  background-color: #f8fafc;
}

#dashboard {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}

#card {
  border-radius: 10px;
  background: white;
  padding: 10px 30px 30px 30px;
  margin: 10px;
  text-align: center;
  -webkit-box-shadow: 0px 9px 15px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 9px 15px 10px rgba(0, 0, 0, 0.15);
}

#filter #inputTanggal {
  display: flex;
  flex-direction: row;
  color: black;
}

#filter #inputTanggal div {
  margin: 0px 20px;
}

#filter #presetTanggal {
  display: flex;
  flex-direction: row;
}

#filter #presetTanggal a {
  display: flex;
  flex-direction: row;
  margin: 0 20px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

#filter #presetTanggal a:active {
  display: flex;
  flex-direction: row;
  margin: 0 20px;
  text-decoration: none;
  color: #1e3a8a;
  font-weight: bold;
}

#card h3 {
  color: black;
}
#header {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #1e3a8a, #6a11cb);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: left;
  box-shadow: 0px 9px 15px 10px rgba(0, 0, 0, 0.15);
}

#header a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.2s;
}

#header a:hover {
  background: rgba(255, 255, 255, 0.2);
}

#header a.active {
  background: #3b82f6;
}

#atas {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#atas h2 {
  font-size: 48px;
  text-align: center;
  color: #0f172a;
  margin-top: 20px;
}

#atas a {
  text-decoration: none;
  margin-top: 20px;
  font-weight: bold;
  background: linear-gradient(135deg, #3f5efb, #6a11cb);
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

table {
  width: 90%;
  border-collapse: collapse;
  background-color: white;
  color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 9px 15px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  border: none;
}

th {
  background-color: rgb(240, 240, 240);
  padding: 12px;
  text-align: left;
}

td {
  padding: 12px;
  border-top: 0.1px solid rgba(255, 255, 255, 0.1);
}

tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

table a {
  color: #0f172a;
  text-decoration: none;
  margin-right: 10px;
  font-weight: bold;
}

table a:hover {
  text-decoration: underline;
}

.status {
  padding: 4px 10px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  font-size: 13px;
  background-color: white;
}

.done {
  background-color: #28a745 !important;
  color: white !important;
  font-weight: bold !important;
}

.progress {
  background-color: #ffc107; /* kuning */
  color: black;
  font-weight: bold;
}

/* =========================
   FORM STYLE
========================= */

form {
  background-color: white;
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 12px;
  margin-top: 20px;
  width: 500px;
  color: black;
  box-shadow: 0px 9px 15px 10px rgba(0, 0, 0, 0.15);
}

/* label */
form label {
  font-weight: 600;
  font-size: 14px;
  color: black;
}

/* input & select */
form input,
form select {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: none;
  outline: 1px solid grey;
  font-size: 14px;
  color: black;
  background-color: white;
  transition: 0.2s;
}

/* placeholder */
form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* focus effect */
form input:focus,
form select:focus {
  background: rgba(255, 255, 255, 0.3);
}

/* select option biar kebaca */
form select option {
  color: black;
}

/* button */
form button {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #3f5efb, #6a11cb);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
}

/* hover button */
form button:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

#filter {
  background: white;
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 12px;
  margin-top: 20px;
  width: 700px;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 9px 15px 10px rgba(0, 0, 0, 0.15);
}

#filter select {
  margin: 10px;
}

#apps {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #3f5efb, #b511cb);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#apps h2 {
  color: white;
  margin: 20px;
}

#apps-list {
  width: 800px;
  display: flex;
  flex-wrap: wrap;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  padding: 20px;
}

#apps-card {
  height: 140px;
  width: 140px;
  border-radius: 20px;
  margin: 10px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#apps-card img {
  width: 80px;
  margin: 5px;
}
