  body { font-family: Arial, sans-serif; background: #f5f5f5; margin: 0; padding: 0; }
    .container { max-width: 1200px; margin: auto; padding: 20px; }
    h1 { margin-bottom: 20px; }
    form { margin-bottom: 30px; display: flex; gap: 10px; }
    input[type="text"] { flex: 1; padding: 8px; border: 1px solid #ccc; border-radius: 4px; }
    button { padding: 8px 16px; border: none; background: #007bff; color: white; border-radius: 4px; cursor: pointer; }
    button:hover { background: #0056b3; }
    .error-box { background: #ffdddd; color: #a00; padding: 10px; border: 1px solid #a00; border-radius: 4px; margin-bottom: 20px; }
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .card { background: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); overflow: hidden; display: flex; flex-direction: column; }
    .card-header { background: #007bff; color: white; padding: 12px 16px; font-size: 1.1em; }
    .card-body { padding: 16px; flex: 1; overflow: auto; }
    .status { padding: 6px 10px; border-radius: 4px; margin: 6px 0; display: flex; align-items: center; }
    .status-success { background: #d4f8d4; color: #155724; }
    .status-fail { background: #f8d7da; color: #721c24; }
    .status .icon { margin-right: 6px; font-weight: bold; }
    pre { background: #f0f0f0; padding: 10px; border-radius: 4px; overflow-x: auto; }
    table { border-collapse: collapse; width: 100%; }
    th, td { border: 1px solid #ddd; padding: 8px; }
    th { background: #f0f0f0; }
    .section-title { margin-top: 0; }
    




      /* banner */
      #fix-banner {
        position: sticky;
        top: 0;
        z-index: 1001;
        background: #e0c58a;
        color: #333;
        padding: 12px 24px;
        font-size: 1.1em;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #d1b474;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }
      #fix-banner button {
        background: #28a745;
        color: #fff;
        border: none;
        padding: 10px 18px;
        cursor: pointer;
        border-radius: 8px;
        font-size: 0.95em;
        font-weight: bold;
        transition: background-color 0.2s;
      }
      #fix-banner button:hover {
        background: #000;
      }

      /* modal backdrop */
      #fix-modal {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        align-items: center;
        justify-content: center;
        z-index: 2000;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
      }
      #fix-modal.visible {
        display: flex;
        opacity: 1;
      }

      /* modal box */
      .modal-content {
        background: #fff;
        padding: 2rem;
        max-width: 480px;
        width: 90%;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        position: relative;
        transform: scale(0.95);
        transition: transform 0.3s ease-in-out;
        text-align: center;
      }
      #fix-modal.visible .modal-content {
        transform: scale(1);
      }
      .close-btn {
        position: absolute;
        top: 8px;
        right: 8px;
        background: #f0f0f0;
        border: none;
        font-size: 1.4em;
        cursor: pointer;
        color: #888;
        border-radius: 50%;
        line-height: 1;
        padding: 4px 8px;
      }
      .close-btn:hover {
        background: #e0e0e0;
        color: #000;
      }

      /* form */
      #fix-form {
        display: grid;
        grid-gap: 12px;
        text-align: left;
      }
      #fix-form label {
        font-weight: bold;
        color: #555;
      }
      #fix-form input {
        width: 100%;
        box-sizing: border-box; /* Added for consistency */
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 4px;
      }
      #fix-form input[readonly] {
        background: #f0f0f0;
        cursor: not-allowed;
      }
      #fix-form button[type="submit"] {
        background: #28a745;
        color: #fff;
        border: none;
        padding: 12px;
        font-size: 1.1em;
        font-weight: bold;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.2s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
      }
      #fix-form button[type="submit"]:hover {
        background: #000;
      }
      #fix-form button[type="submit"]:disabled {
        background: #555;
        cursor: wait;
      }

      /* spinner */
      .spinner {
        width: 16px;
        height: 16px;
        margin-right: 8px;
        border: 2px solid rgba(255, 255, 255, 0.6);
        border-top-color: #fff;
        border-radius: 50%;
        animation: spin 0.6s linear infinite;
        display: none;
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      /* status message */
      #fix-status {
        margin-top: 12px;
        font-size: 0.95em;
        text-align: center;
        padding: 10px;
        border-radius: 4px;
        display: none;
      }
      #fix-status.success {
        background-color: #d4edda;
        color: #155724;
        display: block;
      }
      #fix-status.error {
        background-color: #f8d7da;
        color: #721c24;
        display: block;
      }

      @media (max-width: 400px) {
        .modal-content {
          padding: 1.5rem;
        }
        .close-btn {
          top: 6px;
          right: 6px;
        }
      }
