/* Basic styling for the dashboard */
body {
    background-color: #f8f9fa;
}

.card {
    border: 0;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
    font-weight: 500;
}

.table.align-middle td {
    vertical-align: middle;
}

/* Styles for the domain reputation sparkline */
.sparkline-container {
  display: flex;
  flex-grow: 1;
  height: 20px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #dee2e6;
}

.sparkline-bar {
  flex-grow: 1;
  /* Add a tiny border between bars */
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sparkline-bar:last-child {
    border-right: none;
}

/* Reputation Colors */
.rep-high { background-color: #198754; }    /* Green */
.rep-medium { background-color: #ffc107; }  /* Yellow/Orange */
.rep-low { background-color: #fd7e14; }     /* Orange/Red */
.rep-bad { background-color: #dc3545; }      /* Red */
.rep-unknown { background-color: #e9ecef; } /* Light Grey */

.badge {
    min-width: 70px;
}

/* Styles for the spam rate sparkline (bar chart style) */
.sparkline-container-spam {
    display: flex;
    align-items: flex-end; /* Align bars to the bottom */
    height: 30px;
    width: 100%;
}

.sparkline-bar-spam-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column-reverse; /* To make the bar grow upwards */
    margin: 0 1px;
}

.sparkline-bar-spam {
    background-color: #dc3545; /* Red for spam */
    width: 100%;
}

