body {
    background-color: #191f2b;
    margin: 0;
    padding: 0;
}

.bottom-nav {
    margin-bottom: 5px;
    border-top: 1px solid #2d333f;
    background-color: #191f2b;
    color: white;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
}

.nav-item {
    font-size: 0.75rem;
    text-align: center;
    color: white;
}

.nav-link {
    color: white;
    text-decoration: none;
}

.nav-link svg {
    display: block;
    margin: 0 auto 2px;

}
.bg-telegram-accent {
    background-color: #0088cc; /* или любой другой синий */
}

#date-picker {
    position: absolute;
    top: -9999px; /* скрыт визуально */
    left: -9999px;
}

.cursor-pointer{
    background-color: #2c3441;
        border-radius: 15px;
    margin-bottom: 10px;
}

.success{
    background-color: rgb(30 174 219);
    border-radius: 15px;
}

.cancel{
    background-color: rgb(136 136 136);
    border-radius: 15px;
}

.btn-outline-light {
    border-color: hsl(223 14% 20%);
}

.btn-check:active+.btn-outline-light, .btn-check:checked+.btn-outline-light, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show, .btn-outline-light:active{
    background-color: hsl(196 77% 49%);
    color: hsl(0 0% 98%);
    border: none;
}

.continue {
    background-color: #065985; /* сиренево-фиолетовый */
    border-radius: 15px;

}
.continue:hover {
    background-color: hsl(196 77% 49%);
}


.pulse {
  animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 174, 219, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(30, 174, 219, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 174, 219, 0);
  }
}



  .recording-indicator .dot {
    height: 16px;
    width: 16px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1s infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

