 /* =====================
    LOG ITEMS
===================== */
 
 .log-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .log-item {
    margin: 1.2rem 0;
    border-left: 5px solid #00fff7; /* дефолтный цвет */
    border-radius: 0 6px 6px 0;
    transition: border-color 0.3s ease;
  }
  .log-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px 10px 20px;
    background: rgba(0, 255, 229, 0.05);
    border-radius: 0 6px 6px 0;
    transition: background 0.3s ease, transform 0.15s ease;
    box-shadow: 0 0 6px rgba(0, 255, 229, 0.2);
    color: inherit;
    text-decoration: none;
  }
  .log-item a:hover {
    background: rgb(0, 255, 229);
    color: #000;
    transform: translateX(6px);
    box-shadow: 0 0 12px rgba(0, 255, 247, 0.34);
  }
  .log-title {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    max-width: 50%;
    overflow-wrap: break-word;
  }
  .log-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-family: monospace;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .log-date {
    color: #88b9c6;
    width: fit-content;
    

  }
  .log-status {
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 0;
    max-width: fit-content;
  }

  /* Цвета для бордера и текста по статусам */
  .log-item.status-initial {
    border-color: #40e0d0;
  }
  .log-item.status-initial a {
    color: #40e0d0;
  }
  .log-item.status-error {
    border-color: #ff3b3b;
  }
  .log-item.status-error a {
    color: #ff3b3b;
  }
  .log-item.status-fine {
    border-color: #4caf50;
  }
  .log-item.status-fine a {
    color: #4caf50;
  }
  .log-item.status-amber {
    border-color: #e6aa12;
  }
  .log-item.status-amber a {
    color: #e6aa12;
  }
  .log-item:not(.status-initial):not(.status-error):not(.status-fine):not(.status-amber) {
    border-color: #575c5c;
  }
  .log-item:not(.status-initial):not(.status-error):not(.status-fine):not(.status-amber) a {
    color: #575c5c;
  }



  .no-logs {
    padding: 20px;
    color: #666;
    font-style: italic;
    text-align: center;
  }