/* Support Page Restoration - Black/White Style */
.btn-black {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.btn-black:hover {
    background: #333;
    transform: translateY(-1px);
}

.tab-pills {
    display: flex;
    background: #f1f2f4;
    padding: 4px;
    border-radius: 8px;
    gap: 4px;
}

.tab-pill {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-pill.active {
    background: white;
    color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}