/* assets/css/style.css */

/* Overall body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

/* Container with padding, margin and a light box shadow for separation */
.container {
  margin-top: 30px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Headings spacing */
h1, h2 {
  margin-bottom: 25px;
  color: #343a40;
}

/* Increase spacing between form groups */
.form-group {
  margin-bottom: 1.5rem; /* increased spacing */
}

/* Style for labels */
label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Extra spacing for buttons */
.btn {
  margin-top: 10px;
}
/* Constrain the width of the claim category dropdown */
select#claim_category {
    max-width: 300px; /* Adjust this value as needed */
    width: 100%;
}
/* Table spacing */
.table {
  margin-top: 20px;
}

/* List group items */
.list-group-item {
  margin-bottom: 5px;
}

/* Responsive adjustments for smaller devices */
@media (max-width: 768px) {
  .container {
    padding: 15px;
    margin-top: 20px;
  }
}