/* Input styles */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="tel"],
select,
textarea {
    border-color: #d1d5db !important; /* Slightly darker border */
    border-width: 1.5px !important;   /* Slightly thicker border */
}

/* Optional: Make the border even more visible on focus */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: #FFD700 !important; /* Your brand yellow color */
    border-width: 2px !important;
    outline: none !important;
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.1) !important; /* Subtle yellow glow */
}


/* Main layout styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  footer {
    margin-top: auto;
  }
  
  /* Dashboard card styles */
  .stat-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  .stat-card .card-body {
    padding: 1.5rem;
  }
  
  .stat-card .stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
  }
  
  .stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .stat-card .stat-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
  }
  
  /* Invoice related styles */
  .invoice-header {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1.5rem;
  }
  
  .invoice-item-row:hover {
    background-color: #f8f9fa;
  }
  
  .tenant-logo {
    max-width: 200px;
    max-height: 100px;
  }
  
  .tenant-logo-sm {
    max-width: 100px;
    max-height: 50px;
  }
  
  /* Status badges */
  .status-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-weight: 500;
  }
  
  .status-paid {
    background-color: #d1e7dd;
    color: #0f5132;
  }
  
  .status-pending {
    background-color: #fff3cd;
    color: #664d03;
  }
  
  /* Form styles */
  .form-floating label {
    color: #6c757d;
  }
  
  .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  
  /* Table styles */
  .table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
  }
  
  /* Button enhancements */
  .btn {
    border-radius: 5px;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
  }
  
  .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
  }
  
  .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
  }
  
  /* Action buttons in tables */
  .action-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 5px;
  }
  
  .action-btn:hover {
    opacity: 0.9;
  }
  
  .action-btn i {
    font-size: 0.9rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .stat-card .stat-value {
      font-size: 1.5rem;
    }
    
    .stat-card .stat-icon {
      font-size: 2rem;
    }
    
    .invoice-header {
      padding: 1rem;
    }
  }