.package-group-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.package-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-section-copy {
    margin: 6px 0 0;
    opacity: 0.8;
}

.package-section-empty {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin: 0 0 20px;
    padding: 18px;
    text-align: center;
}

.package-section-title {
    margin: 0;
}

.purchase-history-panel {
    background-color: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-top: 24px;
    padding: 20px;
}

.purchase-history-toolbar {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .purchase-history-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
}