body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
}

input {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 0.7rem;
  background: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

.error {
  color: red;
  margin-bottom: 1rem;
}

.container {
  width:100%;
  max-width: 1126px;
  margin: 0 auto;
  padding: 0 1rem;
  background: white;
  
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}



a {
  display: inline-block;
  margin-top: 1rem;
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Make all tables scrollable on small screens */
.table-wrapper {
  overflow-x: auto;
  width: 100%;
  margin-top: 1.5rem;
}

/* Clients table formatting */
.clients-table {
  width: 100%;
  border-collapse: collapse;
}

.clients-table th,
.clients-table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.clients-table th {
  background-color: #f0f0f0;
}

/* General button style */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

/* Ensure everything uses border-box for consistent sizing */
* {
  box-sizing: border-box;
}


.clients-table {
  border-collapse: collapse;
  width: 100%;
}

.clients-table th,
.clients-table td {
  border: 1px solid #ccc; /* light gray border */
  padding: 8px 12px;
  text-align: left;
}

.clients-table th {
  background-color: #f0f0f0;
}
