
/*head*/
body
{
    background: linear-gradient(135deg, #141618 0%, #1d2124 50%, #141618 100%);
    color:#fff;

}
.text-yellow
{
    color:#e4b52f;
}
.text-green
{
    color:green !important;
}
.btn-outline-warning
{
    color:#fff;
}
.btn-outline-warning:hover
{
    background:#000;
    color:#fff;
}
.nav-item>.active
{
    background-color:unset!important;
    color:#fff !important;
    border: none; /* removes all borders */
    border-bottom: 1px solid white;
}
.nav-tabs
{
    border-color: gray;
    
}
.nav-link
{
    color:gray;
    text-transform: uppercase;
    font-size:small;
}
.nav-link:hover
{
    color:white;
    border: none; /* removes all borders */
    border-bottom: 1px solid white;
}
.nav-link:focus
{
    color:white;
    border: none; /* removes all borders */
    border-bottom: 1px solid white;
}
td, th
{
    background-color:unset !important;
    color:#86888a !important;
}
.table-round-start
{
    border-radius: 40px 0 0 40px;
}
.table-round-end
{
    border-radius: 0 40px 40px 0;
}
tr
{
    padding-top:10px;
    background: linear-gradient(135deg, #22211E 0%, #1d2124 50%, #22211E 100%);
}
table
{
        border-collapse: separate;
    border-spacing: 0 15px;
}
.cursor-pointer
{
    cursor:pointer;
}
.max-w80 {
  max-width: 80%;
}

/* On mobile, override that */
@media (max-width: 600px) {
  .max-w80 {
    max-width: none; 
  }
}
/*index*/
.connection-indicator {
  display: inline-block; /* <-- This keeps it on the same line as text */
  width: 12px;
  height: 12px;
  background-color: #00c853;
  border-radius: 50%;
  box-shadow: 0 0 10px #00c853;
  animation: pulse 1.5s infinite ease-in-out;
  margin-left: 8px; /* optional spacing between text and the dot */
  vertical-align: middle; /* aligns nicely with text */
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 10px #00c853;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
    box-shadow: 0 0 20px #00c853;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 10px #00c853;
  }
}
/*receive */
.modal-content
{
    background-color:#1c1b17;
}
.modal-field
{
    /*background-color:#1c1b17;*/
    border:none;
    background-color:#222220;
    color:#fff;
}
.modal-field:focus
{
    background-color:#262522;
    
    color:#fff;
}
.modal-field::placeholder {
      color:#535353;
}
.btn-close {
    --bs-btn-close-color: #535353!important;
}
.modal-header
{
    border-color: #535353;
}