body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      background: #f5f5f5;
      padding: 0;
    }
    
.container {
      max-width: 800px;
      margin: 0 auto;
      padding: 50px 0 20px 0;;
    }
    
.container-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
    
.site-header {
  background-color: white;
  border-bottom: 1px solid #f1f1f1;
  padding: 10px 0 20px 0; /* atas kanan bawah kiri */
}
.logo a {
  font-size: 24px;
  font-weight: bold;
  color: #1a50ff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #1a50ff;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-signup {
  background-color: #ff3f4b;
  color: white;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.btn-signup:hover {
  background-color: #0037cc;
}

.auth-buttons a {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}
    .header-box {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 30px;
      margin-bottom: 40px;
    }
    .header-box h1 {
      font-size: 24px;
      margin: 0 0 20px 0;
    }
    .header-box p {
      font-size: 16px;
      color: #555;
      margin: 0 0 10px 0;
      line-height: 1.6;
    }
    .header-box p:last-child {
      margin-bottom: 0;
    }
    .header-box a {
      color: #1a73e8;
      text-decoration: none;
    }
    .grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 10px;
    }
    .loader-card {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
    }
    
    .status-text {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

.status-normal {
  color: #555;
}

.status-red {
  color: #d72f2f;
}
    
    .loader-card svg {
  width: 48px;
  height: 48px;
}
    .loader-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
    }
    .modal-content {
      background-color: #fefefe;
      margin: 5% auto;
      padding: 20px;
      border: 1px solid #888;
      width: 90%;
      max-width: 600px;
      border-radius: 10px;
      position: relative;
    }
    .modal-content svg {
  width: 100px;
  height: 100px;
}
    .close {
      color: #aaa;
      position: absolute;
      right: 20px;
      top: 10px;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
    }
    .close:hover,
    .close:focus {
      color: black;
      text-decoration: none;
      cursor: pointer;
    }
    textarea {
      width: 100%;
      margin-top: 20px;
      height: 150px;
      font-family: Consolas, monospace;
      font-size: 14px;
      resize: none;
    }
    .popup-svg {
      text-align: center;
      margin-bottom: 20px;
    }
    
    .popup-info {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
  text-align: Left;
}
    
    .footer {
  max-width: 1000px;
  margin: 80px auto 20px auto;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.sources {
  margin-bottom: 40px;
  font-size: 13px;
}

.sources a {
  color: #1a0dab;
  text-decoration: none;
}

.sources a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h4 {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-column a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  margin: 4px 0;
}

.footer-column a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 12px;
  color: #aaa;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.code-actions {
  text-align: right;
  margin: 10px 0;
}

.code-actions button {
  background-color: #4f46e5;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}

.code-actions button:hover {
  background-color: #4338ca;
}

#popup-code {
 background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  max-height: 300px; /* maksimal tinggi, kira-kira 10 baris */
  overflow-y: auto; /* scroll ke bawah kalau lebih */
  white-space: pre-wrap;
}