body {
    background-color: #f9fafb;
    font-family: 'Figtree', sans-serif;
}

h1 {
    color: #1f2937;
}
/* Base navbar styling */
.drag-handle {
        cursor: grab;
        color: #6c757d;
        font-size: 1.2rem;
        user-select: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2d3748; /* Dark gray background */
    padding: 1rem 2rem;
    color: #ffffff;
    flex-wrap: wrap;
  }
  
  /* Left side navigation links */
  .nav-left a {
    margin-right: 1.5rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-left a:hover {
    color: #a0aec0; /* Lighter gray on hover */
  }
  
  /* Right side logout button */
  .nav-right form {
    margin: 0;
  }
  
  .nav-right button {
    background-color: #e53e3e; /* Red background */
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .nav-right button:hover {
    background-color: #c53030; /* Darker red on hover */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-left, .nav-right {
      width: 100%;
      display: flex;
      justify-content: space-between;
      margin-top: 0.5rem;
    }
  
    .nav-left a {
      margin-right: 0.5rem;
    }
  
    .nav-right {
      justify-content: flex-end;
    }
  }
  
.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
    background: linear-gradient(to right, #f9fafb, #e5e7eb);
}

.signup-box {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.signup-box h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #111827;
}

.signup-box form {
    display: flex;
    flex-direction: column;
}

.signup-box label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #374151;
}

.signup-box input {
    padding: 0.6rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.signup-box input:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(99,102,241,0.2);
}

.signup-box button {
    padding: 0.75rem;
    background-color: #6366f1;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signup-box button:hover {
    background-color: #4f46e5;
}

.login-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.login-link a {
    color: #6366f1;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #f8fafc;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

h2, h3, h4, h5 {
  margin-bottom: 1rem;
}

.btn {
  font-size: 1rem;
}

/* Responsive table handling */
.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 8px;
  vertical-align: middle;
  font-size: 0.95rem;
}

th {
  background-color: #f1f5f9;
}

/* Invoice preview and send page specific */
.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.invoice-header img {
  max-height: 80px;
  margin-top: 0.5rem;
}

.invoice-info, .bill-to, .pay-to {
  margin-bottom: 1rem;
}

.invoice-totals {
  margin-top: 2rem;
  text-align: right;
}

/* Mobile specific tweaks */
@media (max-width: 768px) {
  .invoice-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .invoice-header img {
      margin-top: 1rem;
  }

  .invoice-totals {
      text-align: center;
  }

  .btn {
      width: 100%;
      margin-bottom: 0.5rem;
  }
  
  table {
      font-size: 14px;
  }
}



