.rcp-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem;
}

.rcp-loading__icon {
    width: 2rem;
    color: #99a131;
    animation: rcp-rotate 2s linear infinite;
}

.rcp-tabs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rcp-tabs__nav {
    display: flex;
    align-items: center;
    overflow: auto;
    padding: 1rem 0;
}

.rcp-tabs__tab-wrapper {
    border-bottom: 3px solid #26280c;
    padding-bottom: .75rem;
    flex: 1;
}

.rcp-tabs__tab-wrapper:has(.rcp-tabs__tab--active) {
    border-bottom-color: #99a131;
}

.rcp-tabs__tab {
    color: white !important;
    border: none !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    padding: .25rem .75rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

.rcp-tabs__tab--active {
    border-color: #99A132 !important;
    color: #99A132 !important;
    border-radius: .25rem !important;
}

.rcp-tabs__panel {
    display: none;
    color: white !important;
}

.rcp-tabs__panel--active {
    display: block;
}

@keyframes rcp-rotate {
    100% {
        transform: rotate(360deg);
    }
}