buttons-grid {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.btn-group {
    display: inline-flex;
    background: #f5f7fa;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5eb;
	min-width: 400px;
}

.btn-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 140px;
    border: none;
    background: transparent;
}

.btn-switch:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #2c3e50;
}

.btn-switch.active {
    background: #075e54;
    color: white;
    box-shadow: 0 4px 12px rgb(7 94 84 / 15%);
}

.btn-switch.active:hover {
    background: #075e54;
    color: white;
}

.btn-switch i {
    font-size: 18px;
}

/* Альтернативный дизайн для темной темы */
.btn-group.dark {
    background: #2d3748;
    border-color: #4a5568;
}

.btn-switch.dark {
    color: #cbd5e0;
}

.btn-switch.dark:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f7fafc;
}

.btn-switch.dark.active {
    background: #075e54;
    color: white;
}

/* Вариант с разделителями */
.btn-group.with-separators {
    background: transparent;
    border: 1px solid #e1e5eb;
    gap: 1px;
    padding: 0;
    overflow: hidden;
}

.btn-group.with-separators .btn-switch {
    border-radius: 0;
    margin: 0;
}

.btn-group.with-separators .btn-switch:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.btn-group.with-separators .btn-switch:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Вариант с табами */
.btn-group.tabs {
    background: transparent;
    border-bottom: 2px solid #e1e5eb;
    border-radius: 0;
    padding: 0;
    gap: 20px;
}

.btn-group.tabs .btn-switch {
    padding: 12px 0;
    border-radius: 0;
    position: relative;
    background: transparent;
    min-width: 120px;
}

.btn-group.tabs .btn-switch.active {
    background: transparent;
    color: #667eea;
    box-shadow: none;
}

.btn-group.tabs .btn-switch.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #075e54;
    border-radius: 3px 3px 0 0;
}

/* Индикатор текущей страницы */
.current-page-indicator {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

.current-page-indicator strong {
    color: #667eea;
}

/* Адаптивность */
@media (max-width: 768px) {
    .btn-switch {
        padding: 10px 16px;
        min-width: 120px;
        font-size: 14px;
    }
    
    .btn-switch i {
        font-size: 16px;
    }
	.btn-group {
	    min-width: 100%;
	}
}