/* Import the Source Sans Pro font */
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&display=swap');

:root {
  --logo-url: url("https://st-amp.co.uk/assets/logo2.png");
}

/* General Styles */
body {
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background-color: #2a327b;
  color: #ffffff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
header img.logo {
  height: 40px;
  margin-right: 10px;
}
header h1 {
  font-size: 24px;
  margin: 0;
}

/* Main Container */
.container {
  max-width: 1000px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Overview Section */
.overview p {
  font-size: 20px;
  margin: 10px 0;
}
.big-number {
  font-size: 28px;
  font-weight: bold;
}

/* Dashboard Charts */
.dashboard-charts {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

/* Actions Section */
.actions {
  margin: 20px 0;
}

/* Larger Button Styles */
.btn.btn-primary {
  padding: 10px 15px;  /* Larger padding */
  font-size: 16px;      /* Larger font size */
}

.btn.btn-secondary {
  padding: 5px 8px;  /* Larger padding */
  font-size: 12px;      /* Larger font size */
}
.btn-primary {
  background-color: #db1a63;
  color: #ffffff;
  border: none;
}
.btn-primary:hover {
  background-color: #c31455;
}
.btn-secondary {
  background-color: #2a327b;
  color: #ffffff;
  border: none;
}
.btn-secondary:hover {
  background-color: #232a6b;
}

/* STAMP Blue Buttons */
.btn-stamp {
  background-color: #2a327b;
  color: #ffffff;
  border: none;
}

.btn-stamp:hover {
  background-color: #c31455;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}
th {
  background-color: #2a327b;
  color: white;
}

/* Progress Bar Styles */
.progress-bar {
  width: 100%;
  background-color: #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.progress {
  height: 20px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

/* Form Styles */
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
}
.form-group input, 
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

/* Inline Forms */
.inline-form .form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.inline-form .form-inline input,
.inline-form .form-inline select,
.inline-form .form-inline button {
  flex: 1;
}

/* Responsive Design */
@media (max-width: 600px) {
  header, .container {
    padding: 10px;
  }
  .inline-form .form-inline {
    flex-direction: column;
  }
  th, td {
    font-size: 14px;
    padding: 6px;
  }
  .big-number {
    font-size: 22px;
  }
}

/* Prevent nested containers from having an extra white background and box shadow */
.container .container {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* Optional: Increase the font size of big numbers for better emphasis */
.big-number {
  font-size: 32px;
  font-weight: bold;
}

/* Optional: Adjust table styling for better spacing */
table {
  margin-top: 20px;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

/* Optional: Adjust responsive styling for tables */
@media (max-width: 600px) {
  td, th {
    font-size: 14px;
    padding: 6px;
  }
}

/* Font Awesome Icon Styling in Cards */
.card-body i {
  display: block;
  margin-bottom: 10px;
  color: #2a327b;
}