    .container {
      width: 100%;
      max-width: 1200px;
	  margin-bottom: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
    }

    .timer-container {
      padding: 6px 24px;
      border-radius: 30px;
      display: flex;
      gap: 2px;
      background: #202020;
      color: #ffffff;	  
	  font-family: 'Roboto', sans-serif;      
    }

    .timer-item {
      padding-top: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 60px;
    }

    .timer-value {
      font-size: 1.6rem;
	  font-weight: bold;
   }

    .timer-label {
      font-size: 0.75rem;
      text-transform: uppercase;
    }

    @media (max-width: 768px) {
      .timer-container {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

.language-switcher {
    display: inline-block;
    margin: 0;
}

.language-switcher select {
    /* Сброс стандартных стилей */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Внешний вид */
    background: #f8f9fa;
    color: #212529;
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 8px 32px 8px 12px;
    font-size: 14px;
    line-height: 1.5;
    outline: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px 12px;

    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.language-switcher select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.language-switcher select:hover {
    border-color: #86b7fe;
}

@media (max-width: 768px) {
.container {
margin-bottom: 10px;
margin-top: -30px;
}
.timer-container {
flex-wrap: wrap;
justify-content: center;
padding: 4px 16px; /* опционально: уменьшить padding для компактности */
}

.timer-item {
min-width: 48px; /* опционально: немного сузить элементы */
padding-top: 8px;
}

.timer-value {
font-size: 1.3rem; /* было 1.6rem */
}

.timer-label {
font-size: 0.65rem; /* было 0.75rem */
}
}