
  /* ===== Theme Colors ===== */
  :root {
    --agx-red: #b71c1c;
    --agx-dark: #2c2c2c;
    --agx-gray: #f5f5f5;
    --agx-light: #ffffff;
  }

  /* ===== Header Section ===== */
  .agx-header {
    background: var(--agx-light);
    border: 2px solid var(--agx-red);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 25px;
  }

  .agx-header h1 {
    color: var(--agx-red);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
  }

  .agx-header p {
    color: var(--agx-dark);
    font-size: 16px;
    line-height: 1.5;
  }

  .agx-header h4 {
    color: var(--agx-red);
    font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
  }

  .agx-header img {
    width: 200px;
    height: auto;
    border-radius: 6px;
  }

  /* ===== Tabs Styling ===== */
  .nav-tabs .nav-link {
    font-weight: 600;
    color: var(--agx-dark);
    border-radius: 0;
    border: none;
    background: var(--agx-gray);
    transition: 0.3s;
  }

  .nav-tabs .nav-link:hover {
    background: #e0e0e0;
  }

  .nav-tabs .nav-link.active {
    background: var(--agx-red);
    color: #fff !important;
    border: none;
  }

  .tab-content {
    background: var(--agx-light);
    border: 2px solid var(--agx-red);
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  /* ===== Form Inputs ===== */
  label {
    font-weight: 600;
    color: var(--agx-dark);
  }

  .form-control,
  .form-select {
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: 0.3s;
  }

  .form-control:focus,
  .form-select:focus {
    border-color: var(--agx-red);
    box-shadow: 0 0 4px rgba(183, 28, 28, 0.4);
  }

  /* ===== Buttons ===== */
  .btn-primary {
    background-color: var(--agx-red);
    border: none;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    transition: 0.3s;
  }

  .btn-primary:hover {
    background-color: #900d0d;
  }

  .btn-success {
    background-color: #2e7d32;
    border: none;
  }

  /* ===== Card ===== */
  .card-box {
    background: var(--agx-light);
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  }

  /* ===== Section Titles ===== */
  h5 {
    color: var(--agx-red);
    font-weight: 700;
    margin-bottom: 10px;
  }

  /* ===== Footer Buttons ===== */
  .mt-4 {
    text-align: right;
  }
