/*
 * Accounting Page Header Fix
 * Simple fix for the accounting header spacing
 */

/* Clean accounting header row styling */
.accounting-page .services-header-row,
.services-header-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

/* Make title and button more visible */
.services-header-row h2 {
  color: #283848;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

/* Button styling */
.services-header-row .btn-call {
  background-color: #D4AF37;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  margin-left: 15px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .services-header-row {
    padding: 0 10px;
  }
  
  .services-header-row h2 {
    font-size: 16px;
  }
  
  .services-header-row .btn-call {
    padding: 6px 12px;
    font-size: 12px;
  }
}
