body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.header-logo {
  width: 200px;
  height: 50px;
  margin-right: 16px;
}

.container {
  max-width: 800px;
}

h1 {
  font-size: 1.5rem; 
  font-weight: bold;
  margin-bottom: 20px;
}

.card {
  border: 1px solid #dee2e6; 
  margin-bottom: 1rem;
}

.card-header {
  background-color: #f8f9fa; 
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header button {
  width: auto;
  text-align: left;
  color: #000; 
  flex-grow: 1;
}

.arrow-down-icon {
  font-size: 1rem;
  color: #000; 
  border: 1px solid #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: #12171c;
  border-color: #12171c;
}

.btn-primary:hover {
  background-color: #0d1218;
  border-color: #0d1218;
}

.text-black {
  color: black !important;
  font-weight: bold;
}

.form-group label {
  font-weight: bold;
}

.inline-form-group {
  display: flex;
  align-items: center;
}

.inline-form-group label {
  margin-right: 10px;
  font-weight: normal;
}

.inline-form-group input,
.inline-form-group select {
  flex: 1;
}

.card-body {
  padding: 1rem;
}