
        @import url('https://fonts.googleapis.com/css2?family=Jacquard+24&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');
        body {
            background-color: #f5f5f5;
            padding: 20px;
            font-family: "Oswald", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
        }
        .form-container {
            background-color: white;
            padding: 30px 60px;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
              margin-top: 100px; /* adjust height depending on navbar size */
   
        }
        .header-section {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
        }
        .logo-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .logo {
            width: 80px;
            height: 80px;
            border: 2px solid #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            text-align: center;
            padding: 5px;
        }
        .photo-box {
            width: 100px;
            height: 90px;
            border: 2px solid #333;
            float: right;
            margin-left: 15px;
        }
        .section-title {
            background-color: #e9ecef;
            padding: 8px;
            margin-top: 20px;
            margin-bottom: 15px;
            font-weight: bold;
            border-left: 4px solid #0d6efd;
        }
        .table-bordered th {
            background-color: #e9ecef;
            font-size: 12px;
            padding: 8px 4px;
        }
        .table-bordered td {
            padding: 8px 4px;
        }
        .note-text {
            font-size: 11px;
            font-style: italic;
            color: #666;
            margin-top: 5px;
        }
        .signature-section {
            margin-top: 30px;
            padding: 20px;
            background-color: #f8f9fa;
        }
        .flatpickr-input {
            background-color: white;
        }
        /* Flatpickr Custom Styling */
        .flatpickr-calendar {
            box-shadow: 0 4px 6px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
        }
        .flatpickr-current-month {
            font-size: 16px;
        }
        .flatpickr-day.selected {
            background: #0d6efd;
            border-color: #0d6efd;
        }
        .flatpickr-day.today {
            border-color: #0d6efd;
        }
        .flatpickr-day:hover {
            background: #e9ecef;
            border-color: #e9ecef;
        }
        .flatpickr-months .flatpickr-month {
            background: #0d6efd;
            color: white;
        }
        .flatpickr-months .flatpickr-prev-month,
        .flatpickr-months .flatpickr-next-month {
            fill: white;
        }
        .flatpickr-weekday {
            color: #0d6efd;
            font-weight: 600;
        }
        @media print {
            body {
                background-color: white;
                padding: 0;
            }
            .form-container {
                box-shadow: none;
            }
        }

         .navbar-title {
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              display: flex;
              align-items: center;
              justify-content: flex-start;
              padding: 12px 24px;
              z-index: 999;
              box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }


          /* Text styles */
          .navbar-title .title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 2px;

          }

          .navbar-title .subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: #c8fad5;
            margin: 0;
            letter-spacing: 0.3px;

          }
 

      /* Gradient background */
      .header-gradient {
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1d4ed8 100%);
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      }


.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  min-width: 260px;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Success (green) */
.toast-notification.success {
  background-color: #16a34a;
  border-left: 5px solid #15803d;
}

/* Error (red) */
.toast-notification.error {
  background-color: #dc2626;
  border-left: 5px solid #b91c1c;
}

/* Info (blue) */
.toast-notification.info {
  background-color: #2563eb;
  border-left: 5px solid #1e40af;
}

/* Optional icon area */
.toast-notification::before {
  content: '⚡';
  margin-right: 8px;
  font-size: 16px;
}
