body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #212529;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.event_detail_container {
  margin-top: 80px;
}

.header,
.footer {
  background-color: black;
  color: white;
  padding: 1rem;
  text-align: center;
}

.content {
  margin: 2rem 0;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card {
  background-color: black;
  color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.card p {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.btn:hover {
  background-color: #0056b3;
}

.link {
  color: #007bff;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.info-table th,
.info-table td {
  border: 1px solid #ddd;
  padding: 0.5rem;
  text-align: left;
}

.info-table th {
  background-color: black;
  font-style: bold;
}

#mainContent {
  margin-top: 10rem;
  min-height: 60vh;
}
div.pipeline-name {
  display:flex;
  flex-wrap: wrap;
  gap: 5px;
}
.status-dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.status-dot.red {
  background: red;
}
.status-dot.green {
  background: green;
}
.status-dot.orange {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
    box-shadow: 0px 0px 10px orange;
    background-color: orange;
}
img.iconify {
  height: 35px;
  margin-top: -4px;
  margin-right: 0.5rem;
}
tr.thick-border-top {
  border-top: 3px solid white;
}
.pipeline-status {
  border-radius: 10px;
  padding: 0 5px;
  font-weight: 600 !important;
  text-transform: uppercase;
}
.pipeline-status.orange {
    animation: blink 1s linear infinite;
  background-color: orange;
}
.pipeline-status.green {
  background-color: green;
}
.pipeline-status.red {
  background-color: red;
}
span.status-name {
  text-transform: capitalize;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

@media (max-width: 768px) {
  .d-none {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .d-md-table-cell {
    display: table-cell !important;
  }
}
@media (max-width: 540px) {
  td,th {
    font-size: small;
    max-width: 5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  img.iconify {
    display: none;
  }
  .pipeline-status {
    padding: 0;
    margin-left: -5px;
    font-size: 0.7rem;
  }
  .pipeline-status.orange {
    animation: blink 1s linear infinite;
    background-color: initial;
    color: orange;
  }
  .pipeline-status.green {
    background-color: initial;
    color: green;
  }
  .pipeline-status.red {
    background-color: initial;
    color: red;
  }
  thead th {
    font-size:.75rem;
    padding: 3px !important;
    text-overflow: unset;
  }
}