/* Google Fonts Link - Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

body {
    background: #F9FAFB !important;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;;
    padding: 15px 0;
}

.logo {
    max-width: 300px;
}

p {
    margin-bottom: 0.25rem !important;
}

.header {
    top:0;
    left:0;
    margin-top: 1rem;
    position: fixed;
}

.center-section {
  min-height: calc(100vh - 300px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer {
    bottom:0;
    left:0;
    margin-bottom: 1rem;
    position: fixed;
    width:100%;
}

.icon-animation {
    animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(0.9, 0.9);
    }
    100% {
      transform: scale(1, 1);
    }
  }

.status-list ul {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    float: right;
    position: relative;
    top: 2px;
}

.status-list li {
    float: left;
    margin: 0;
    list-style-type: none;
    padding: 0;
    margin-right: 24px;
}

.status-list li:last-child {
    margin-right: 0;
}

.status-list ul li img {
    height: 24px;
    margin-right: 6px;
    position: relative;
    top: -2px;
    width: 24px;
}

table td, th {
    padding: 6px 12px !important;
}

table th {
    background-color: #F5F5F5 !important;
}

table tbody img {
    height: 36px;
    width: 36px;
    float: right;
}

table tbody span {
    position: relative;
    top: 6px;
}

/* The Modal (background) */
.modal {
    border-radius: 10px;
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    border-radius: 10px !important;
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 3px solid #4267b2!important;
    width: 45% !important; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: #ffffffa2;
    float: right;
    font-size: 30px;
    font-weight: bold;
    position: relative;
    top: -3px;
  }
  
  .close:hover,
  .close:focus {
    color: #ffffffd0;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Modal Header */
  .modal-header {
    display: block !important;
    border-radius: 0;
    padding: 0 16px !important;
    background-color: #4267b2;
    color: white;
  }
  
  /* Modal Body */
  .modal-body {
      padding: 18px;
  }
  
  /* Modal Footer */
  .modal-footer {
    border-radius: 0 0 10px 10px;
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #e2e2e2;
    color: white;
    margin-bottom: 0px;
  }
  
  .modal-footer button {
      background-color: #4267b2;
      color: #fff;
      min-width: 100px;
      padding: 10px 0;
    margin-right: 10px;
  }
  
  .modal-footer button:hover {
      background-color: #37508e !important;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 0;
    border: 1px solid #888;
    width: 40% !important;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
  }
  
  /* Add Animation */
  @keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
  }
  
  button {
    border: none;
    border-radius: 5px !important;
    cursor: pointer;
    appearance: none;
    background-color: inherit;
    padding: 5px 10px !important;
  }

  .time-stamp {
    background: #F5F5F5;
    display: inline-block;
    padding: 2px 6px;
    border: 2px solid #ccc;
    border-radius: 6px;
  }

 @keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

#btnStart:hover .pulse {
  border-radius: 50%;
  animation: pulse 2s infinite;
}

