div.game__list-user-name a {
    color: #333;
}

.slots__item-record.alert-info {
    padding: 8px 11px;
}

.game__description-item--coach:before {
    content: url(../img/ico-coach.png);
}

.slots__item-description-item--coach:before {
    content: url(../img/ico-coach.png);
}

.game__description-item--status:before {
    content: url(../img/cancel.svg);
}

.slots__item-description-item--status:before {
    content: url(../img/cancel.svg);
}
.navbar-form {
    border-top: none;
}

.navbar-collapse {
    box-shadow: none;
}

div.place-info {background-color: #ffd469;border-color:transparent;color: #333;padding: 8px 11px;padding-left: 15px;border-radius: 10px; margin-bottom: 12px}

#id_level {
  margin-left: 4px;
}

#level_btn {
    background:#6d70d7;
    color:#FFF ;
    margin-top: 4px;
    border-radius: 18px;
    -moz-border-radius: 5px;
    border-color:transparent;
    -webkit-border-radius: 5px;
}

button.small_btn {
    background:#6d70d7;
    color:#FFF ;
    border-radius: 18px;
    -moz-border-radius: 5px;
    border-color:transparent;
    -webkit-border-radius: 5px;
}

.level_selector_form {
     box-sizing: border-box;
}

.level_selector_form input[type="text"], select {
    height: 30px;
    width: 180px;
    margin-left: 4px;
    margin-top: 4px;
    margin-bottom: 2px;
}

.bold_link {
  font-weight: 600;
}





ul.menu li {
    text-align: right;
    padding-right: 30px;
}

.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:hover {
    background-color: transparent;
}

.game__list-pair-photo {
    margin-bottom: 25px;
}

a.payment-info {
    color: #000000;
    font-weight: bold;
    font-style: italic;
}



@media (min-width: 1200px) {
    ul.menu {
        margin-top: 15px;
    }

    .header__button {
        margin-top: 20px;
        position: static;
        transform: none;
        top: auto;
        right: auto;
    }

    ul.menu li {
        padding-right: 0;
    }

    .container-fluid>.navbar-collapse, .container-fluid>.navbar-header, .container>.navbar-collapse, .container>.navbar-header {
        margin-right: -15px;
        margin-left: -15px;
    }
}

.table {
	width: 100%;
	border: none;
    border-collapse: separate;
}
.table thead th {
	font-weight: bold;
	text-align: center;
	border: none;
	background: #EDEDED;
	font-size: 14px;
	border-top: 1px solid #ddd;
}
.table tr th:first-child, .table tr td:first-child {
	border-left: 1px solid #ddd;
}
.table tr th:last-child, .table tr td:last-child {
	border-right: 1px solid #ddd;
}
.table thead tr th:first-child {
	border-radius: 20px 0 0 0;
}
.table thead tr th:last-child {
	border-radius: 0 20px 0 0;
}
.table tbody td {
	text-align: center;
	border: none;
	vertical-align: middle;
}
.table tbody tr td {
	vertical-align: middle;
}
.table tbody tr:nth-child(even) {
	background: #F8F8F8;
}
.table tbody tr:last-child td{
	border-bottom: 1px solid #ddd;
}
.table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 20px;
}
.table tbody tr:last-child td:last-child {
	border-radius: 0 0 20px 0;
}

.custom-summary {

    font-weight: bold;
    color: #6d70d7; /* Цвет текста */
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-right: 1em; /* Добавлено для увеличения кликабельной области */
}

.custom-summary span {
    display: inline-block;
    transition: transform 0.2s;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.custom-summary::-webkit-details-marker {
    display: none;
}

.custom-summary::before {
    content: '►';
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.2s;
    margin-right: 0.3em;

    line-height: 1;
}

details[open] .custom-summary::before {
    transform: rotate(90deg);
}


.email-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  
  .email-popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    width: 100%;
  }
  
  .email-popup-open {
    overflow: hidden;
  }

/* Селектор с повышенной специфичностью для текста адреса */
.header__address .address-text {
    font-size: 16px !important;
    white-space: nowrap;
}

/* Селектор с повышенной специфичностью для номера телефона */
.header__address .phone-number {
    font-size: 14px !important;
    white-space: nowrap;
}

.game__block1 {
  border: 1px solid #dadfe5;
  padding: 30px;
  -webkit-box-shadow: 0 0 5px 0 #eaeaea;
  -moz-box-shadow: 0 0 5px 0 #eaeaea;
  box-shadow: 0 0 5px 0 #eaeaea;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.btn-pink {
    background-color: #f350a2;
    color: #fff;
}

.btn-pink:hover {
    background-color: #ff1493;
    color: #fff;
}

.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
}

.environment-info {
    margin-left: 10px;
    font-size: 12px;
    color: #888;
}
.push-indicator {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.push-enabled {
    background-color: #28a745;
}

.push-disabled {
    background-color: #dc3545;
}

.avatar-container {
    position: relative;
    display: inline-block;
} 

@media (max-width: 1199px) {
        .mobile-auth-bar {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        clear: both;
        margin-left: auto;
        gap: 10px;
        padding: 8px 15px 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-auth-bar__name {
        color: #ffffff;
        font-size: 20px;
        line-height: 1.2;
        text-decoration: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 0 1 auto;
        min-width: 0;
        padding-right: 10px;
    }

    .mobile-auth-bar__name:hover,
    .mobile-auth-bar__name:focus {
        color: #ffffff;
        text-decoration: none;
    }

    .mobile-auth-bar__logout {
        height: auto;
        line-height: 1.2;
        min-width: 168px;
        border-radius: 12px;
        padding: 9px 18px;
    }
}

@media (max-width: 479px) {
    .mobile-auth-bar__name {
        font-size: 16px;
    }

    .mobile-auth-bar__logout {
        min-width: 140px;
        padding: 8px 14px;
    }
}


.price-with-discount,
.slots__item-description-item-value.price-with-discount,
.game__description-item-value.price-with-discount,
.slots__item-description-item-value > .price-with-discount,
.game__description-item-value > .price-with-discount {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.35;
    vertical-align: middle;
}

.slots__item-description-item-value.price-with-discount .price-old,
.game__description-item-value.price-with-discount .price-old,
.slots__item-description-item-value > .price-with-discount .price-old,
.game__description-item-value > .price-with-discount .price-old {
    color: #d64949 !important;
    text-decoration: line-through !important;
    text-decoration-color: #d64949 !important;
    text-decoration-thickness: 2px;
    opacity: .98;
    font-size: 14px;
    font-weight: 700;
}

.slots__item-description-item-value.price-with-discount .price-new,
.game__description-item-value.price-with-discount .price-new,
.slots__item-description-item-value > .price-with-discount .price-new,
.game__description-item-value > .price-with-discount .price-new {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border-radius: 999px;
    background: #fff1bf !important;
    color: #9a3412 !important;
    font-weight: 800 !important;
    font-size: 16px;
    line-height: 1.35;
    box-shadow: inset 0 0 0 1px rgba(154, 52, 18, .18);
}
