/* Стили для вкладок */
.tabs-container {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tabs-nav {
    display: flex;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
    padding: 0;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #e9ecef;
}

.tab-button {
    flex: 1;
    padding: 16px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:first-child {
    border-radius: 12px 0 0 0;
}

.tab-button:last-child {
    border-radius: 0 12px 0 0;
}

.tab-button.active {
    background: #ffffff;
    color: #2c5aa0;
    font-weight: 600;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2c5aa0;
}

.tab-button:hover:not(.active) {
    background: #e9ecef;
    color: #495057;
}

.tab-content {
    display: none;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    min-height: 400px;
}

.tab-content.active {
    display: block;
}

.empty-tab {
    padding: 40px;
    text-align: center;
    color: #6c757d;
}

.empty-tab-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-tab h3 {
    margin: 0 0 8px 0;
    color: #495057;
}

.empty-tab p {
    margin: 0;
}

/* Стили для формы примера */
.example-form {
    padding: 32px;
}

.example-header {
    margin-bottom: 32px;
    text-align: center;
}

.example-header h2 {
    margin: 0 0 12px 0;
    color: #2c5aa0;
    font-size: 24px;
    font-weight: 700;
}

.example-header p {
    margin: 0;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.5;
}