.channel {
    padding: 20px;
    border: 1px solid black;
}

.channel-name {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.channel-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.channel-message {
    margin-left: 10px;  /* Разделително пространство между името на канала и съобщението */
}

/* ... предходният код ... */

.timeline {
    height: 20px; /* Увеличаваме височината на лентата */
    
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mark {
    position: absolute;
    height: 8px;  /* Увеличаваме височината на малките маркери */
    width: 1px;
    background: black;
    bottom: 0;
}
/* ... предходният код ... */

.mark.small {
    height: 8px; /* Най-малък размер на маркера */
}

.mark.medium {
    height: 12px; /* Среден размер на маркера */
}

.mark.big {
    height: 15px; /* Голям размер на маркера */
}

.mark.biggest {
    height: 18px; /* Най-голям размер на маркера */
}

.marked-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px; /* Adjust the height as needed */
    background-color: rgba(255, 255, 255, 0.315); /* Transparent black, adjust alpha as needed */
    z-index: 1; /* Higher z-index to be above the colors */
  }
.filling {
    background-color: #3498db; 
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; 
}

@keyframes fillTimeline {
    from { width: 0%; }
    to { width: 100%; }
}
.filling.red {
    background-color: #FF0000; 
}

.filling.blue {
    background-color: #1291e6; 
}

.filling.green {
    background-color: #17a552; 
}

.filling.yellow {
    background-color: #F1C40F; 
}
.color-element {
    position: absolute;
    /* Set top, left, right, or other positioning properties */
    background-color: blue; /* Example color */
    z-index: 1; /* Lower z-index than the marked line */
  }


  .monitoring-widget {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 0px;
    padding: 10px;
 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.widget-header {
    text-align: center;
    margin-bottom: 10px;
}

.metric {
    margin-bottom: 10px;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h3 {
    margin: 0;
}

.progress-bar {
    background-color: #ccc;
    height: 10px;
    border-radius: 0px;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: 0px;
    width: 0;
    background-color: #4CAF50;
    transition: width 0.5s ease-in-out;
}

span {
    display:block;
    text-align: center;
}

/* Style for memory progress bars */
.memory-fill {
    background-color: #007bff; /* Blue color */
  }
  
  /* Additional styling for GPU information */
  .gpu-container {
    margin-top: 20px;
  }
  
  .gpu-container h3 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .gpu-container .progress-bar {
    margin-bottom: 10px;
  }
  
  .red-progress {
    background-color: red;
  }
  .float-right {
    float: right;
  }
  .inline-right {
    float: right;
    display: inline;
  }
  

  .blue-text {
    color: blue;
  }

  .red-text {
    color: red;
  }
  