/* Custom styles to complement Bootstrap */

body {
  background-color: #f8f9fa;
}

.min-vh-100 {
  min-height: 100vh;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.card {
  border-radius: 8px;
  border: none;
}

.card-body {
  padding: 2rem;
}

.btn {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
}

/* Signature Area Styles */
.signature-wrapper {
  width: 100%;
  padding: 0;
  margin: 20px auto;
}

.signature-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  background: #fafbfc;
}

#signature-pad {
  display: block;
  width: 100%;
  height: 200px;
  border: 2px dashed #999;
  border-radius: 6px;
  background: white;
  cursor: crosshair;
  touch-action: none;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}

.signature-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.signature-buttons button {
  padding: 8px 24px;
  font-size: 16px;
}

/* List and Table Styles */
.list-group-item {
  border-radius: 6px;
  border: 1px solid #dee2e6;
  margin-bottom: 8px;
  transition: transform 0.2s ease;
}

.list-group-item:hover {
  transform: translateX(2px);
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.table {
  border-radius: 8px;
  overflow: hidden;
}

.table-hover tbody tr:hover {
  background-color: #f8f9fa;
}

.badge {
  padding: 6px 12px;
  font-weight: 500;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #212529;
  font-weight: 600;
}

.form-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  border-radius: 6px;
  border: 1px solid #dee2e6;
  padding: 0.625rem 0.875rem;
}

.form-control:focus, .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

footer {
  border-top: 1px solid #dee2e6;
}
