.column-right-button {
    background-color: rgba(0, 153, 255, 0.1);
    margin-bottom: 2px;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid transparent;
    /*border-image: linear-gradient(45deg, #99CCFF, #3399FF, #0099FF, #6699CC, #336699, #006699) 1;*/
    border-image: linear-gradient(45deg, #336699, #006699) 1;
    transition: all 0.3s ease;
    width: 100%;
}

.column-right-button:hover {
    background-color: rgba(0, 153, 255, 0.2);
}

.column-right-button.current {
    border-image: linear-gradient(45deg, lawngreen, lawngreen) 1;
}

.column-right-button.center {
    width: 100%;
    max-width: 200px;
}

.column-right-button.no-border-top {
    border-top: none;
}

/*.column-right-button:disabled {*/
/*    background-color: lightgray;*/
/*    color: darkgray;*/
/*    cursor: default;*/
/*}*/

.sun-button-container {
    display: flex;
    gap: 10px;
}

.dropdown-main-menu {
}

.dropdown-menu {
    text-align: left;
}

.column-right-button.sun {
    /*width: 80%;*/
    margin-bottom: 0;
}

.column-right-button.dropdown-button {
    margin-bottom: 0;
    width: 53px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-right-button.red {
    background-color: rgba(100, 0, 0, 0.5);
    border-image: linear-gradient(45deg, #990000, #660000) 1;
}

.column-right-button.red:hover {
    background-color: rgba(150, 0, 0, 0.5);
}

.sub-buttons {
    display: none;
    flex-direction: column;
    position: relative;
    text-align: center;
}

.sub-buttons.active {
    display: flex;
}

.sub-button {
    background-color: rgba(0, 153, 255, 0.1);
    padding: 10px 20px;
    color: white;
    font-size: 14px;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid transparent;
    /*border-image: linear-gradient(45deg, #99CCFF, #3399FF, #0099FF, #6699CC, #336699, #006699) 1;*/
    border-image: linear-gradient(45deg, #336699, #006699) 1;
    transition: all 0.3s ease;
    position: relative;
    margin: 10px 15px;
}

.sub-button.current {
    border-image: linear-gradient(45deg, lawngreen, lawngreen) 1;
}

.sub-button:hover {
    background-color: rgba(0, 153, 255, 0.2);
}
/* Линия от основной кнопки к дочерним кнопкам */
/*.container::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 30px; !* Соединение с основной кнопкой *!*/
/*    left: -15px; !* Линия слева *!*/
/*    width: 2px;*/
/*    height: 20px;*/
/*    background-color: #666;*/
/*}*/

/* Линия слева от дочерних кнопок */
/*.sub-buttons::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    !*top: -10px;*!*/
/*    !*left: -15px; !* Линия слева *!*!*/
/*    width: 2px;*/
/*    height: 10px;*/
/*    background-color: #666;*/
/*}*/

/* Линия слева от каждой дочерней кнопки */
.sub-button::before {
    content: '';
    position: absolute;
    top: 50%; /* Центрировать по высоте */
    left: -15px; /* Линия слева */
    width: 15px;
    height: 1px;
    background-color: #99CCFF;
}

/* Вертикальная линия, соединяющая дочерние кнопки */
.sub-buttons::after {
    content: '';
    position: absolute;
    /*top: 10px;*/
    /*left: -15px; !* Линия слева *!*/
    width: 1px;
    height: calc(100% - 28px);
    background-color: #99CCFF;
}
