.srd-uniform-tabs {
    width: 100%;
    margin: 0 auto;
}

.srd-uniform-tabbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 28px;
    padding: 6px;
    width: fit-content;
    max-width: 100%;
    border: 1px solid rgba(74, 196, 255, 0.28);
    border-radius: 12px;
    background: rgba(4, 22, 34, 0.58);
}

.srd-uniform-tab {
    appearance: none;
    border: 0;
    border-radius: 8px;
    padding: 11px 19px;
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    color: inherit;
    background: transparent;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.srd-uniform-tab:hover,
.srd-uniform-tab:focus-visible {
    outline: none;
    background: rgba(80, 201, 255, 0.10);
}

.srd-uniform-tab.is-active {
    background: #45c9f5;
    color: #06131d;
    box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset;
}

.srd-uniform-panel[hidden] {
    display: none !important;
}

.srd-uniform-replacement-wrap {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 28px auto;
    padding: 0;
}

.srd-uniform-replacement-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.srd-colours-section {
    width: 100%;
    margin: 0 auto;
}

.srd-colours-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.srd-colour-card {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255,255,255,.03);
}

.srd-colour-card img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    border: 0;
}

@media (max-width: 767px) {
    .srd-uniform-tabbar {
        width: 100%;
        gap: 6px;
    }
    .srd-uniform-tab {
        flex: 1 1 50%;
        padding: 10px 12px;
    }
    .srd-colours-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
