input:focus {
    outline: none;
}

.navbar-container {
    border-radius: 0px 0px 20px 20px;
}

.navbar-brand {
    width: 125px;
    margin-top: 5px;
}

.navbar-collapse {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.nav-item {
    margin: 0px 10px 0px 10px;
}

.nav-link {
    color: whitesmoke;
    background: linear-gradient(to left, #1888ff, #0069d9);
    text-decoration: none;
    padding: 9px 15px 9px 15px;
    cursor: pointer;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: white;
    background: linear-gradient(to left, #1888ff, #1888ff);;
    transform: scale(1.1);
}

.search-form {
    display: flex;
    margin: 0 10px;
    background-color: white;
    border-radius: 15px;
    border: solid #007bff 2px;
    justify-content: space-between;
    align-items: center;
    gap: 10px; 
    width: 100%;
}

.search-input {
    padding: 0.375rem 0.75rem;
    font-size: 16px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: none;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    min-width: 125px;
    width: 100%;
}

.vertical-line {
    width: 4px;                  /* Толщина линии */
    background-color: #007bff;      /* Цвет */
    height: 20px;               /* Высота */
}

.search-button {
    color: white;
    background: linear-gradient(to right, #1888ff, #0072ec);
    border: none;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
}

.user-account {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-account img {
    transition: all 0.3s ease;
}

.user-account img {
    background-color: #FFFFFF;
    border: 1px solid #F7F7F7;
}

.user-account img:hover {
    transform: scale(1.1);
}

.btn-outline-primary {
    color: white;
    background: linear-gradient(to left, #1888ff, #0069d9);;
    border: none;
    padding: 8px 15px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 15px;
    text-decoration: none;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    color: white;
    background: linear-gradient(to left, #1888ff, #1888ff);;
    transform: scale(1.1);
}

.user-avatar {
    width: 60px;
    height: 60px;
    vertical-align: middle;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    width:1px;
}

.btns {
    display: flex;
    flex-direction: row;
    margin-right: 20px;
    gap: 10px;
}

.btns a {
    color: #3E4958;
    transition: all 0.3s ease;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    height: 40px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 300;
    text-align: center;
    overflow: hidden;
    padding-top: 10px;
}

.btns a:hover {
    background-color: #F7F7F7;
    color: #007bff;
}

.btns a span {
    font-size: 10px;
}

.arrow-btn {
    padding: 5px 15px;
    color: #444444;
    border: 2px solid #BBBBBB;
    border-radius: 10px;
    cursor: pointer;
    height: 50px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}