.leave-tracker {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    max-width: 1000px;
    margin: auto;
    margin-top: 40px;
  }
  
  .summary-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .summary-cards .card {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
  }
  
  .card.blue { background-color: #003385; }
  
  
  .card h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .card p {
    font-size: 24px;
    font-weight: bold;
  }
  
  .leave-form {
    margin-bottom: 30px;
  }
  
  .leave-form h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .form-group label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
    color: #555;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .leave-form button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #013fa1;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
  }
  .leave-form button:hover {
    background-color: #2563eb;
  }
  
  /* Leave History Table */
  .leave-history h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .leave-history table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .leave-history th,
  .leave-history td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    font-size: 14px;
  }
  
  .leave-history th {
    background-color: #f3f4f6;
    color: #374151;
  }
  
  .approved {
    color: #10b981;
    font-weight: bold;
  }
  
  .rejected {
    color: #ef4444;
    font-weight: bold;
  }
  